// $Id: USA-NRA-Reduced.tgt 1354 2016-09-13 15:58:35Z dmc $ - target definition file for ICFRA targetfaces // $Author: dmc $ $Revision: 1354 $ $Date: 2016-09-13 12:58:35 -0300 (Tue, 13 Sep 2016) $ // Updated for new "V" scoring under SMTV2 software var YARDSTOMETRES = 3/3.28; var INCHESTOMM = 25.4; var METRESTOFEET = 3.28; var std_nra_options = { // 'options' is optional.. ;-) nshotsmax : 100, stringmode : true, // go in "string mode"; keep accumulating shots time_resolution: 1, // display shot-times to nearest 1s. centre_zoom_frac : 200, // fraction of centre area in which "zoom" doesn't re-centre; default 25 coord_unit_name: '"', // units to report shot coordinates coord_unit_mpier: 1/INCHESTOMM, coord_unit_ndigs: 1, speed_unit_name: 'fps', // units to report speed speed_unit_mpier: METRESTOFEET, temp_unit_name: 'F', // units to report temperature; "F" causes C->F conversion big_shot_time: 10000, // milliseconds to make a new incoming shot "big" bullet_gauging_choices_default : 6, // index (0..n) of default bullet dia. bullet_gauging_choices : [ ['17 cal',.177*INCHESTOMM], ['22 cal',.224*INCHESTOMM], ['6mm',.243*INCHESTOMM], ['6.5mm',.264*INCHESTOMM], ['.277"',.277*INCHESTOMM], ['7mm',.284*INCHESTOMM], ['30 cal',.308*INCHESTOMM], ['8mm',8], ['338 cal',.338*INCHESTOMM], ['35 cal',.358*INCHESTOMM], ['50 BMG',.511*INCHESTOMM], ], // options used by v2.1 code: shot_format: '{1}-{2}X', // e.g. "99-7X" speed_unit_name: 'fps', // units to report speed; default = 'fps' speed_unit_mpier: METRESTOFEET, // speeds will be round()'ed groupsize_unit_mpier: 1/INCHESTOMM, // show group size in inches groupsize_unit_name: '"', // groupsize_unit_ndigs: 1, // xxx.x" groupsize_height_unit_mpier: 0, // don't show group height groupsize_height_unit_name: 'H', // groupsize_height_unit_ndigs: 2, // xxx.xx MOA groupsize_width_unit_mpier: 0, groupsize_width_unit_name: 'W', // groupsize_width_unit_ndigs: 2, // xxx.xx MOA ghost_max: 1000, // shots faster than this are deemed to be "ghost shots" // ghost shot values. 1000m/s should be fine for 200y and 300y }; module.exports = { // http://www.nrahq.org/compete/nra-rule-books.asp // http://www.nrahq.org/compete/RuleBooks/HPR/hpr-book.pdf (F-Class in section 22) // NRA target dimensions from http://www.nrahq.org/compete/rules/fullbore_07.pdf // // new addresses: http://compete.nra.org/official-nra-rule-books.aspx // http://compete.nra.org/documents/pdf/compete/RuleBooks/Fullbore/fb-book.pdf // http://compete.nra.org/documents/pdf/compete/RuleBooks/HPR/hpr-book.pdf // 'NRA-MR52-200y': {// http://compete.nra.org/documents/pdf/compete/RuleBooks/HPR/hpr-book.pdf // 4.3 (c) NRA No. MR-52—Reduction of the MR-1 target to simulate the // 600-yard stage of the National Match Course at 200 yards. distance:200*YARDSTOMETRES, centrecoords: {x:0, y:0}, targetboard: { width: 72*INCHESTOMM, height: 72*INCHESTOMM, colour:"white", bordercolour:"black", borderwidth:10 }, options : std_nra_options, // see at top scoringzones: [ // draw this in reverse order // search for a hit in forward order // default values: {x:0, y:0} { name:"X", score:[10,1], colour:"transparent", bordercolour:"white", borderwidth:2.3, type: {name:"ring", dia:1.79*INCHESTOMM } }, { name:"10", score:10, colour:"transparent", bordercolour:"white", type: {name:"ring", dia:3.79*INCHESTOMM } }, { name:"9", score:9, colour:"transparent", bordercolour:"white", type: {name:"ring", dia:5.79*INCHESTOMM } }, { name:"8", score:8, colour:"transparent", bordercolour:"white", type: {name:"ring", dia:7.79*INCHESTOMM } }, { name:"7", score:7, colour:"black", /* no border - aiming mark */ type: {name:"ring", dia:11.79*INCHESTOMM } }, { name:"6", score:6, colour:"transparent", bordercolour:"black", borderwidth:1, type: {name:"ring", dia:15.79*INCHESTOMM } }, { name:"5", score:5, colour:"transparent", bordercolour:"black", borderwidth:1, type: {name:"ring", dia:19.79*INCHESTOMM } }, { name:"MISS", score:0, colour:"transparent", bordercolour:"black", borderwidth:1, type: {name:"rect", width: 72*INCHESTOMM, height:72*INCHESTOMM } }, ], }, }