2013-10-16 17:04:38 +02:00
// Automatically generated configuration file for 'Hyperion daemon'
2016-04-26 12:27:59 +02:00
// Generated by: HyperCon (The Hyperion deamon configuration file builder)
// Created with HyperCon V1.02.0 (30.04.2016)
2013-10-16 17:04:38 +02:00
2013-07-26 22:38:34 +02:00
{
2013-12-14 06:23:30 +01:00
/// Device configuration contains the following fields:
2013-11-09 11:10:34 +01:00
/// * 'name' : The user friendly name of the device (only used for display purposes)
2016-03-08 18:20:09 +01:00
/// * 'type' : The type of the device or leds (known types for now are
2016-04-26 12:27:59 +02:00
/// ---------SPI---------, APA102, WS2801, P9813, LPD6803, LPD8806, ---------PWM---------, WS2812b (just RPi1), WS281X (RPi1, RPi2, RPi3), --------OTHER--------, PhilipsHUE, AtmoOrb, PiBlaster, Tinkerforge, FadeCandy, RawHID (USB), UDP, SEDU, TPM2, USBASP-WS2801, USBASP-WS2812, ------3rd PARTY------, Adalight, AdalightAPA102, AmbiLed, Atmo, Lightpack, Multi-Lightpack, Paintpack, Test (file), None)
2016-03-08 18:20:09 +01:00
/// * [device type specific configuration]
2013-11-09 11:10:34 +01:00
/// * 'colorOrder' : The order of the color bytes ('rgb', 'rbg', 'bgr', etc.).
"device" :
{
2016-04-26 12:27:59 +02:00
"name" : "MyHyperionConfig" ,
2013-11-09 11:10:34 +01:00
"type" : "ws2801" ,
"output" : "/dev/spidev0.0" ,
2016-03-21 17:22:22 +01:00
"rate" : 1000000 ,
2013-11-09 11:10:34 +01:00
"colorOrder" : "rgb"
} ,
2013-10-13 14:48:59 +02:00
2013-12-14 06:23:30 +01:00
/// Color manipulation configuration used to tune the output colors to specific surroundings.
/// The configuration contains a list of color-transforms. Each transform contains the
2013-12-13 19:39:42 +01:00
/// following fields:
2016-04-26 12:27:59 +02:00
/// * 'channelAdjustment'
/// * 'id' : The unique identifier of the channel adjustments (eg 'device_1')
/// * 'leds' : The indices (or index ranges) of the leds to which this channel adjustment applies
/// (eg '0-5, 9, 11, 12-17'). The indices are zero based.
/// * 'pureRed'/'pureGreen'/'pureBlue' : The manipulation in the Red-Green-Blue color domain with the
/// following tuning parameters for each channel:
/// * 'temperature'
/// * 'id' : The unique identifier of the temperature (eg 'device_1')
/// * 'leds' : The indices (or index ranges) of the leds to which this temperature applies
/// (eg '0-5, 9, 11, 12-17'). The indices are zero based.
/// * 'red'/'green'/'blue' : The temperature manipulation in the Red-Green-Blue color domain with the
/// following tuning parameters for each channel:
/// * 'transform'
/// * 'id' : The unique identifier of the color transformation (eg 'device_1')
/// * 'leds' : The indices (or index ranges) of the leds to which this color transform applies
/// (eg '0-5, 9, 11, 12-17'). The indices are zero based.
/// * 'hsv' : The manipulation in the Hue-Saturation-Value color domain with the following
2013-12-13 19:39:42 +01:00
/// tuning parameters:
2013-11-09 11:10:34 +01:00
/// - 'saturationGain' The gain adjustement of the saturation
2016-04-26 12:27:59 +02:00
/// - 'luminanceGain' The gain adjustement of the luminance
2013-12-14 06:23:30 +01:00
/// * 'red'/'green'/'blue' : The manipulation in the Red-Green-Blue color domain with the
2013-12-13 19:39:42 +01:00
/// following tuning parameters for each channel:
2013-12-14 06:23:30 +01:00
/// - 'threshold' The minimum required input value for the channel to be on
2013-12-13 19:39:42 +01:00
/// (else zero)
2013-11-09 11:10:34 +01:00
/// - 'gamma' The gamma-curve correction factor
2013-12-13 19:39:42 +01:00
///
/// Next to the list with color transforms there is also a smoothing option.
2013-12-14 06:23:30 +01:00
/// * 'smoothing' : Smoothing of the colors in the time-domain with the following tuning
2013-12-13 19:39:42 +01:00
/// parameters:
2013-11-09 11:10:34 +01:00
/// - 'type' The type of smoothing algorithm ('linear' or 'none')
/// - 'time_ms' The time constant for smoothing algorithm in milliseconds
/// - 'updateFrequency' The update frequency of the leds in Hz
2016-03-08 18:20:09 +01:00
/// - 'updateDelay' The delay of the output to leds (in periods of smoothing)
2013-11-09 11:10:34 +01:00
"color" :
{
2016-04-26 12:27:59 +02:00
"channelAdjustment" :
2016-03-13 12:10:54 +01:00
[
{
"id" : "default" ,
"leds" : "*" ,
2016-04-26 12:27:59 +02:00
"pureRed" :
{
"redChannel" : 255 ,
"greenChannel" : 0 ,
"blueChannel" : 0
} ,
"pureGreen" :
2016-03-13 12:10:54 +01:00
{
2016-04-26 12:27:59 +02:00
"redChannel" : 0 ,
"greenChannel" : 255 ,
"blueChannel" : 0
} ,
"pureBlue" :
{
"redChannel" : 0 ,
"greenChannel" : 0 ,
"blueChannel" : 255
2016-03-13 12:10:54 +01:00
}
}
] ,
"temperature" :
[
{
"id" : "default" ,
"leds" : "*" ,
2016-03-15 11:01:29 +01:00
"temperatureValues" :
2016-03-13 12:10:54 +01:00
{
2016-04-26 12:27:59 +02:00
"red" : 255 ,
"green" : 255 ,
"blue" : 255
2016-03-13 12:10:54 +01:00
}
}
] ,
2013-12-13 19:39:42 +01:00
"transform" :
[
{
"id" : "default" ,
2013-12-13 23:00:57 +01:00
"leds" : "*" ,
2016-03-13 12:10:54 +01:00
"hsl" :
{
2016-04-26 12:27:59 +02:00
"saturationGain" : 1.0000 ,
"luminanceGain" : 1.0000
2016-03-21 17:21:24 +01:00
} ,
2013-12-13 19:39:42 +01:00
"red" :
{
2016-04-26 12:27:59 +02:00
"threshold" : 0.0000 ,
"gamma" : 2.5000
2013-12-13 19:39:42 +01:00
} ,
"green" :
{
2016-04-26 12:27:59 +02:00
"threshold" : 0.0000 ,
"gamma" : 2.5000
2013-12-13 19:39:42 +01:00
} ,
"blue" :
{
2016-04-26 12:27:59 +02:00
"threshold" : 0.0000 ,
"gamma" : 2.5000
2013-12-13 19:39:42 +01:00
}
}
] ,
2016-04-26 12:27:59 +02:00
2013-11-09 11:36:08 +01:00
"smoothing" :
{
2016-03-08 18:20:09 +01:00
"type" : "linear" ,
2013-11-09 11:36:08 +01:00
"time_ms" : 200 ,
2014-09-22 20:19:58 +02:00
"updateFrequency" : 20.0000 ,
2014-09-22 21:28:38 +02:00
"updateDelay" : 0
2013-11-09 11:36:08 +01:00
}
2013-11-09 11:10:34 +01:00
} ,
2013-10-13 14:48:59 +02:00
2016-03-08 18:20:09 +01:00
/// The black border configuration, contains the following items:
/// * enable : true if the detector should be activated
/// * threshold : Value below which a pixel is regarded as black (value between 0.0 and 1.0)
/// * unknownFrameCnt : Number of frames without any detection before the border is set to 0 (default 600)
/// * borderFrameCnt : Number of frames before a consistent detected border gets set (default 50)
/// * maxInconsistentCnt : Number of inconsistent frames that are ignored before a new border gets a chance to proof consistency
/// * blurRemoveCnt : Number of pixels that get removed from the detected border to cut away blur (default 1)
/// * mode : Border detection mode (values=default,classic,osd)
"blackborderdetector" :
{
"enable" : true ,
"threshold" : 0.0 ,
"unknownFrameCnt" : 600 ,
"borderFrameCnt" : 50 ,
"maxInconsistentCnt" : 10 ,
"blurRemoveCnt" : 1 ,
"mode" : "default"
} ,
/// The configuration of the effect engine, contains the following items:
/// * paths : An array with absolute location(s) of directories with effects
/// * color : Set static color after boot -> set effect to "" (empty) and input the values [R,G,B] and set duration_ms NOT to 0 (use 1) instead
/// * effect : The effect selected as 'boot sequence'
/// * duration_ms : The duration of the selected effect (0=endless)
2016-04-26 12:27:59 +02:00
/// * priority : The priority of the selected effect/static color (default=990) HINT: lower value result in HIGHER priority!
2016-03-08 18:20:09 +01:00
"effects" :
{
"paths" :
[
"/opt/hyperion/effects"
]
} ,
"bootsequence" :
{
"color" : [ 0 , 0 , 0 ] ,
"effect" : "Rainbow swirl fast" ,
"duration_ms" : 3000 ,
"priority" : 990
} ,
/// The configuration of the Json/Proto forwarder. Forward messages to multiple instances of Hyperion on same and/or other hosts
/// 'proto' is mostly used for video streams and 'json' for effects
/// * proto : Proto server adress and port of your target. Syntax:[IP:PORT] -> ["127.0.0.1:19447"] or more instances to forward ["127.0.0.1:19447","192.168.0.24:19449"]
/// * json : Json server adress and port of your target. Syntax:[IP:PORT] -> ["127.0.0.1:19446"] or more instances to forward ["127.0.0.1:19446","192.168.0.24:19448"]
/// HINT: If you redirect to "127.0.0.1" (localhost) you could start a second hyperion with another device/led config!
/// Be sure your client(s) is/are listening on the configured ports. The second Hyperion (if used) also needs to be configured! (HyperCon -> External -> Json Server/Proto Server)
// "forwarder" :
// {
// "proto" : ["127.0.0.1:19447"],
2016-04-26 12:27:59 +02:00
// "json" : ["127.0.0.1:19446"]
2016-03-08 18:20:09 +01:00
// },
/// The configuration for the frame-grabber, contains the following items:
/// * width : The width of the grabbed frames [pixels]
/// * height : The height of the grabbed frames [pixels]
/// * frequency_Hz : The frequency of the frame grab [Hz]
2016-04-26 12:27:59 +02:00
/// * priority : The priority of the frame-gabber (Default=890) HINT: lower value result in HIGHER priority!
/// * ATTENTION : Power-of-Two resolution is not supported and leads to unexpected behaviour!
2016-03-08 18:20:09 +01:00
"framegrabber" :
{
2016-04-26 12:27:59 +02:00
"width" : 64 ,
"height" : 64 ,
2016-03-09 07:27:06 +01:00
"frequency_Hz" : 10.0 ,
2016-04-26 12:27:59 +02:00
"priority" : 890
2016-03-08 18:20:09 +01:00
} ,
/// The configuration of the Kodi connection used to enable and disable the frame-grabber. Contains the following fields:
/// * xbmcAddress : The IP address of the Kodi-host
/// * xbmcTcpPort : The TCP-port of the Kodi-server
/// * grabVideo : Flag indicating that the frame-grabber is on(true) during video playback
/// * grabPictures : Flag indicating that the frame-grabber is on(true) during picture show
/// * grabAudio : Flag indicating that the frame-grabber is on(true) during audio playback
/// * grabMenu : Flag indicating that the frame-grabber is on(true) at the Kodi menu
/// * grabScreensaver : Flag indicating that the frame-grabber is on(true) when Kodi is on screensaver
/// * enable3DDetection : Flag indicating that the frame-grabber should switch to a 3D compatible modus if a 3D video is playing
// "xbmcVideoChecker" :
// {
// "xbmcAddress" : "127.0.0.1",
// "xbmcTcpPort" : 9090,
// "grabVideo" : true,
// "grabPictures" : true,
// "grabAudio" : true,
// "grabMenu" : false,
// "grabScreensaver" : true,
// "enable3DDetection" : true
// },
/// The configuration of the Json server which enables the json remote interface
/// * port : Port at which the json server is started
"jsonServer" :
{
"port" : 19444
} ,
/// The configuration of the Proto server which enables the protobuffer remote interface
/// * port : Port at which the protobuffer server is started
"protoServer" :
{
"port" : 19445
} ,
/// The configuration of the boblight server which enables the boblight remote interface
2016-04-26 12:27:59 +02:00
/// * port : Port at which the boblight server is started
/// * priority: Priority of the boblight server (Default=900) HINT: lower value result in HIGHER priority!
2016-03-08 18:20:09 +01:00
// "boblightServer" :
// {
2016-04-26 12:27:59 +02:00
// "port" : 19333,
2016-03-09 07:27:06 +01:00
// "priority" : 900
2016-03-08 18:20:09 +01:00
// },
/// Configuration for the embedded V4L2 grabber
/// * device : V4L2 Device to use [default="/dev/video0"]
/// * input : V4L2 input to use [default=0]
/// * standard : Video standard (no-change/PAL/NTSC) [default="no-change"]
/// * width : V4L2 width to set [default=-1]
/// * height : V4L2 height to set [default=-1]
/// * frameDecimation : Frame decimation factor [default=2]
/// * sizeDecimation : Size decimation factor [default=8]
2016-04-26 12:27:59 +02:00
/// * priority : Hyperion priority channel [default=900]
2016-03-08 18:20:09 +01:00
/// * mode : 3D mode to use 2D/3DSBS/3DTAB (note: no autodetection) [default="2D"]
/// * cropLeft : Cropping from the left [default=0]
/// * cropRight : Cropping from the right [default=0]
/// * cropTop : Cropping from the top [default=0]
/// * cropBottom : Cropping from the bottom [default=0]
/// * redSignalThreshold : Signal threshold for the red channel between 0.0 and 1.0 [default=0.0]
/// * greenSignalThreshold : Signal threshold for the green channel between 0.0 and 1.0 [default=0.0]
/// * blueSignalThreshold : Signal threshold for the blue channel between 0.0 and 1.0 [default=0.0]
// "grabber-v4l2" :
// {
// "device" : "/dev/video0",
// "input" : 0,
// "standard" : "no-change",
// "width" : -1,
// "height" : -1,
// "frameDecimation" : 2,
// "sizeDecimation" : 8,
2016-04-26 12:27:59 +02:00
// "priority" : 900,
2016-03-08 18:20:09 +01:00
// "mode" : "2D",
// "cropLeft" : 0,
// "cropRight" : 0,
// "cropTop" : 0,
// "cropBottom" : 0,
// "redSignalThreshold" : 0.0,
// "greenSignalThreshold" : 0.0,
// "blueSignalThreshold" : 0.0
// },
2013-12-14 06:23:30 +01:00
/// The configuration for each individual led. This contains the specification of the area
/// averaged of an input image for each led to determine its color. Each item in the list
2013-12-13 19:39:42 +01:00
/// contains the following fields:
2013-12-14 06:23:30 +01:00
/// * index: The index of the led. This determines its location in the string of leds; zero
2013-12-13 19:39:42 +01:00
/// being the first led.
2013-12-14 06:23:30 +01:00
/// * hscan: The fractional part of the image along the horizontal used for the averaging
2013-12-13 19:39:42 +01:00
/// (minimum and maximum inclusive)
2013-12-14 06:23:30 +01:00
/// * vscan: The fractional part of the image along the vertical used for the averaging
2013-12-13 19:39:42 +01:00
/// (minimum and maximum inclusive)
2013-12-14 06:23:30 +01:00
"leds" :
2013-11-09 11:10:34 +01:00
[
{
"index" : 0 ,
2016-03-08 18:20:09 +01:00
"hscan" : { "minimum" : 0.5000 , "maximum" : 0.5625 } ,
2013-11-09 11:10:34 +01:00
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
"index" : 1 ,
2016-03-08 18:20:09 +01:00
"hscan" : { "minimum" : 0.4375 , "maximum" : 0.5000 } ,
2013-11-09 11:10:34 +01:00
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
"index" : 2 ,
2016-03-08 18:20:09 +01:00
"hscan" : { "minimum" : 0.3750 , "maximum" : 0.4375 } ,
2013-11-09 11:10:34 +01:00
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
"index" : 3 ,
2016-03-08 18:20:09 +01:00
"hscan" : { "minimum" : 0.3125 , "maximum" : 0.3750 } ,
2013-11-09 11:10:34 +01:00
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
"index" : 4 ,
2016-03-08 18:20:09 +01:00
"hscan" : { "minimum" : 0.2500 , "maximum" : 0.3125 } ,
2013-11-09 11:10:34 +01:00
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
"index" : 5 ,
2016-03-08 18:20:09 +01:00
"hscan" : { "minimum" : 0.1875 , "maximum" : 0.2500 } ,
2013-11-09 11:10:34 +01:00
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
"index" : 6 ,
2016-03-08 18:20:09 +01:00
"hscan" : { "minimum" : 0.1250 , "maximum" : 0.1875 } ,
2013-11-09 11:10:34 +01:00
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
"index" : 7 ,
2016-03-08 18:20:09 +01:00
"hscan" : { "minimum" : 0.0625 , "maximum" : 0.1250 } ,
2013-11-09 11:10:34 +01:00
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
"index" : 8 ,
2016-03-08 18:20:09 +01:00
"hscan" : { "minimum" : 0.0000 , "maximum" : 0.0625 } ,
2013-11-09 11:10:34 +01:00
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
"index" : 9 ,
"hscan" : { "minimum" : 0.0000 , "maximum" : 0.0500 } ,
"vscan" : { "minimum" : 0.8571 , "maximum" : 1.0000 }
} ,
{
"index" : 10 ,
"hscan" : { "minimum" : 0.0000 , "maximum" : 0.0500 } ,
"vscan" : { "minimum" : 0.7143 , "maximum" : 0.8571 }
} ,
{
"index" : 11 ,
"hscan" : { "minimum" : 0.0000 , "maximum" : 0.0500 } ,
"vscan" : { "minimum" : 0.5714 , "maximum" : 0.7143 }
} ,
{
"index" : 12 ,
"hscan" : { "minimum" : 0.0000 , "maximum" : 0.0500 } ,
"vscan" : { "minimum" : 0.4286 , "maximum" : 0.5714 }
} ,
{
"index" : 13 ,
"hscan" : { "minimum" : 0.0000 , "maximum" : 0.0500 } ,
"vscan" : { "minimum" : 0.2857 , "maximum" : 0.4286 }
} ,
{
"index" : 14 ,
"hscan" : { "minimum" : 0.0000 , "maximum" : 0.0500 } ,
"vscan" : { "minimum" : 0.1429 , "maximum" : 0.2857 }
} ,
{
"index" : 15 ,
"hscan" : { "minimum" : 0.0000 , "maximum" : 0.0500 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.1429 }
} ,
{
"index" : 16 ,
"hscan" : { "minimum" : 0.0000 , "maximum" : 0.0625 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 17 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.0625 , "maximum" : 0.1250 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 18 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.1250 , "maximum" : 0.1875 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 19 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.1875 , "maximum" : 0.2500 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 20 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.2500 , "maximum" : 0.3125 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 21 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.3125 , "maximum" : 0.3750 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 22 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.3750 , "maximum" : 0.4375 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 23 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.4375 , "maximum" : 0.5000 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 24 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.5000 , "maximum" : 0.5625 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 25 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.5625 , "maximum" : 0.6250 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 26 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.6250 , "maximum" : 0.6875 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 27 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.6875 , "maximum" : 0.7500 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 28 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.7500 , "maximum" : 0.8125 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 29 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.8125 , "maximum" : 0.8750 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 30 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.8750 , "maximum" : 0.9375 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 31 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.9375 , "maximum" : 1.0000 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.0800 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 32 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.9500 , "maximum" : 1.0000 } ,
"vscan" : { "minimum" : 0.0000 , "maximum" : 0.1429 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 33 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.9500 , "maximum" : 1.0000 } ,
"vscan" : { "minimum" : 0.1429 , "maximum" : 0.2857 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 34 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.9500 , "maximum" : 1.0000 } ,
"vscan" : { "minimum" : 0.2857 , "maximum" : 0.4286 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 35 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.9500 , "maximum" : 1.0000 } ,
"vscan" : { "minimum" : 0.4286 , "maximum" : 0.5714 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 36 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.9500 , "maximum" : 1.0000 } ,
"vscan" : { "minimum" : 0.5714 , "maximum" : 0.7143 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 37 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.9500 , "maximum" : 1.0000 } ,
"vscan" : { "minimum" : 0.7143 , "maximum" : 0.8571 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 38 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.9500 , "maximum" : 1.0000 } ,
"vscan" : { "minimum" : 0.8571 , "maximum" : 1.0000 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 39 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.9375 , "maximum" : 1.0000 } ,
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 40 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.8750 , "maximum" : 0.9375 } ,
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 41 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.8125 , "maximum" : 0.8750 } ,
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 42 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.7500 , "maximum" : 0.8125 } ,
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 43 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.6875 , "maximum" : 0.7500 } ,
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 44 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.6250 , "maximum" : 0.6875 } ,
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
} ,
{
2016-03-08 18:20:09 +01:00
"index" : 45 ,
2013-11-09 11:10:34 +01:00
"hscan" : { "minimum" : 0.5625 , "maximum" : 0.6250 } ,
"vscan" : { "minimum" : 0.9200 , "maximum" : 1.0000 }
}
] ,
2013-09-24 21:45:27 +02:00
2013-12-13 19:39:42 +01:00
"endOfJson" : "endOfJson"
2013-07-26 22:38:34 +02:00
}