Skip to content

Instantly share code, notes, and snippets.

@robclewley
Forked from tonyfast/body_config.yml
Last active August 29, 2015 14:18
Show Gist options
  • Save robclewley/b544fae108dd02541ec3 to your computer and use it in GitHub Desktop.
Save robclewley/b544fae108dd02541ec3 to your computer and use it in GitHub Desktop.
Bombardier initial D3 demo
Domain:
x: [-0.7, 0.7]
y: [0, 1.0]
Full_model:
- density: 0.0
radius: 0.08
position: [0.0, 0.0]
- density: 0.5
radius: 0.04
position: [-0.2, 0.45]
- density: 0.5
radius: 0.04
position: [0.2, 0.7]
- density: 0.5
radius: 0.03
position: [0.3, 0.4]
- density: 0.5
radius: 0.03
position: [-0.14, 0.55]
<!doctype html>
<html>
<head>
<script src='//cdn.jsdelivr.net/g/d3js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/3.2.7/js-yaml.min.js"></script>
</head>
<body>
<script>
;( function(){
board = {};
path = {};
var w = 500,
h = 400;
var svg = d3.select('body')
.append('svg')
.attr('height',w)
.attr('width',h);
d3.text( 'body_config.yml')
.get( function(e,d){
board = jsyaml.load( d );
d3.csv( 'trajdata.csv')
.get(function(e,d){
path = d;
mount(svg);
});
});
var mount = function(svg){
var scale = {
x: d3.scale.linear().domain( board['Domain']['x']).range([0,w]),
y: d3.scale.linear().domain(
[1,0].map( function(d){
return board['Domain']['y'][d];
})
).range([0,h]),
r: d3.scale.linear().domain( board['Domain']['y'] ).range([0,h])
}
var line = d3.svg.line()
.x( function(d){
return scale['x']( d['x'] );
})
.y( function(d){
return scale['y']( d['y'] );
})
.interpolate('linear');
svg.selectAll('circle')
.data( board['Full_model'] )
.call( function(s){
s.enter()
.append('circle')
.attr('cx',function(d){
return scale.x(d['position'][0]);
})
.attr('cy',function(d){
return scale.y(d['position'][1]);
})
.attr('r',function(d){
return scale.r(d['radius']);
})
.attr('fill','blue')
});
svg.append('path')
.attr('d',line(path))
.attr("stroke", "steelblue")
.attr("stroke-width", "2")
.attr("fill", "none");
}
})();
</script>
</body>
</html>
t x y
0.0 -0.074995387216724399 0.02785124586465694
0.00016666666666666666 -0.075059816104097773 0.027875185581849447
0.00033333333333333332 -0.075124243932596105 0.027899150071454829
0.00050000000000000001 -0.0751886707004603 0.027923139335868027
0.00066666666666666664 -0.075253096405930711 0.027947153377486236
0.00083333333333333328 -0.075317521047247094 0.027971192198708906
0.001 -0.075381944622648578 0.027995255801937756
0.0026666666666666661 -0.076026121363535148 0.028237255374561589
0.0043333333333333323 -0.076670189571589678 0.028481735806518672
0.0059999999999999984 -0.077314147476110026 0.028728699537014603
0.0076666666666666645 -0.077957993300338008 0.028978149028138771
0.0093333333333333306 -0.078601725261393571 0.029230086764995496
0.010999999999999999 -0.079245341570208308 0.02948451525583674
0.012666666666666666 -0.079888840431458205 0.029741437032196481
0.014333333333333333 -0.080532220043495611 0.030000854649026746
0.016 -0.081175478598280448 0.030262770684835304
0.017666666666666667 -0.081818614281310667 0.030527187741825067
0.019333333333333334 -0.082461625271551861 0.030794108446035182
0.020999999999999998 -0.083104509741366142 0.03106353544748388
0.022666666666666665 -0.083747265856440198 0.031335471420313066
0.024333333333333332 -0.084389891775712517 0.031609919062934692
0.025999999999999999 -0.085032385651299724 0.031886881098178881
0.027666666666666666 -0.0856747456284222 0.032166360273443946
0.029333333333333333 -0.086316969845328689 0.032448359360848153
0.031 -0.086959056433220133 0.032732881157383403
0.032666666666666663 -0.087601003516172657 0.033019928485070772
0.034333333333333327 -0.088242809211059509 0.033309504191117945
0.03599999999999999 -0.088884471627472275 0.033601611148078615
0.037666666666666654 -0.089525988867641029 0.033896252254013742
0.039333333333333317 -0.090167359026353575 0.034193430432654895
0.041000000000000002 -0.09080858019087383 0.034493148633569476
0.042666666666666672 -0.091449650440859093 0.03479540983232806
0.044333333333333336 -0.092090567848276489 0.035100217030673703
0.045999999999999999 -0.092731330477318324 0.035407573256693387
0.047666666666666663 -0.093371936384316415 0.03571748156499148
0.049333333333333326 -0.094012383617655487 0.03602994503686538
0.051000000000000004 -0.094652670217685461 0.036344966780483275
0.052666666666666667 -0.09529279421663267 0.036662549931064083
0.054333333333333331 -0.095932753638510102 0.036982697651059583
0.055999999999999994 -0.096572546499026468 0.037305413130338798
0.057666666666666658 -0.097212170805494172 0.037630699586374591
0.059333333333333321 -0.097851624556736197 0.037958560264432589
0.061000000000000006 -0.098490905742991852 0.038288998437762373
0.062666666666666676 -0.099130012345821319 0.038622017407791066
0.06433333333333334 -0.099768942338009065 0.038957620504319258
0.066000000000000003 -0.10040769368346608 0.039295811085719307
0.067666666666666667 -0.10104626433713086 0.039636592539136158
0.06933333333333333 -0.10168465224486918 0.039979968280690517
0.071000000000000008 -0.10232285534337263 0.040325941755684644
0.072666666666666671 -0.10296087156005583 0.040674516438810537
0.074333333333333335 -0.10359869881295249 0.041025695834360817
0.075999999999999998 -0.10423633501061 0.041379483476442123
0.077666666666666662 -0.10487377805198279 0.041735882929191143
0.079333333333333325 -0.10551102582632435 0.042094897786993359
0.081000000000000003 -0.1061480762130778 0.04245653167470443
0.082666666666666666 -0.10678492708176511 0.042820788247874372
0.08433333333333333 -0.10742157629187497 0.043187671192974467
0.085999999999999993 -0.10805802169274911 0.04355718422762702
0.087666666666666657 -0.10869426112346725 0.043929331100837909
0.08933333333333332 -0.10933029241273048 0.044304115593232093
0.090999999999999998 -0.10996611337874325 0.044681541517291992
0.092666666666666661 -0.11060172182909368 0.045061612717598856
0.094333333333333325 -0.11123711556063248 0.045444333071077155
0.095999999999999988 -0.11187229235935012 0.045829706487241981
0.097666666666666652 -0.11250725000025252 0.046217736908449568
0.099333333333333315 -0.11314198624723507 0.046608428310150933
0.10099999999999999 -0.11377649885295489 0.047001784701148706
0.10266666666666666 -0.11441078555870159 0.047397810123857173
0.10433333333333332 -0.11504484409426616 0.04779650865456557
0.10599999999999998 -0.11567867217780817 0.04819788440370474
0.10766666666666665 -0.11631226751572117 0.048601941516117055
0.10933333333333331 -0.11694562780249636 0.04900868417132985
0.11099999999999999 -0.11757875072058434 0.049418116583832258
0.11266666666666665 -0.11821163394025498 0.0498302430033555
0.11433333333333331 -0.11884427511945556 0.050245067715156841
0.11599999999999998 -0.11947667190366673 0.050662595040307061
0.11766666666666664 -0.12010882192575675 0.051082829335981614
0.11933333333333331 -0.12074072280583358 0.051505774995755475
0.12099999999999998 -0.12137237215109496 0.051931436449901787
0.12266666666666665 -0.12200376755567653 0.052359818165694273
0.12433333333333331 -0.12263490660049772 0.052790924647713573
0.12599999999999997 -0.12326578685310563 0.053224760438157478
0.12766666666666665 -0.1238964058675166 0.053661330117155161
0.12933333333333333 -0.12452676118405571 0.05410063830308541
0.13099999999999998 -0.12515685032919394 0.05454268965289906
0.13266666666666665 -0.12578667081538308 0.054987488862445498
0.13433333333333333 -0.12641622014088832 0.05543504066680343
0.13600000000000001 -0.12704549578961849 0.05588534984061596
0.13766666666666669 -0.12767449523095381 0.056338421198429967
0.13933333333333336 -0.12830321591957131 0.056794259595039975
0.14099999999999999 -0.12893165529526762 0.057252869925836419
0.14266666666666666 -0.12955981078277945 0.057714257127158608
0.14433333333333334 -0.13018767979160112 0.05817842617665208
0.14600000000000002 -0.13081525971579991 0.058645382093630891
0.1476666666666667 -0.13144254793382831 0.059115129939444545
0.14933333333333337 -0.13206954180833391 0.05958767481784974
0.151 -0.13269623868596622 0.060063021875387097
0.15266666666666667 -0.13332263589718091 0.060541176301762881
0.15433333333333335 -0.133948730756041 0.061022143330235659
0.15600000000000003 -0.13457452056001518 0.061505928238008267
0.1576666666666667 -0.1352000025897733 0.061992536346624896
0.15933333333333338 -0.13582517410897851 0.062481973022373516
0.161 -0.13645003236407666 0.062974243676693659
0.16266666666666668 -0.13707457458408234 0.06346935376658977
0.16433333333333336 -0.13769879798036178 0.063967308795049929
0.16600000000000004 -0.13832269974641245 0.064468114311470426
0.16766666666666671 -0.13894627705763943 0.064971775912085944
0.16933333333333339 -0.13956952707112835 0.065478299240405588
0.17100000000000001 -0.1401924469254148 0.065987689987654863
0.17266666666666669 -0.14081503374025048 0.06649995389322369
0.17433333333333337 -0.14143728461636537 0.067015096745120406
0.17600000000000005 -0.1420591966352267 0.067533124380432158
0.17766666666666672 -0.14268076685879391 0.06805404268579146
0.1793333333333334 -0.14330199232926993 0.068577857597849221
0.18100000000000002 -0.14392287006884855 0.069104575103754257
0.1826666666666667 -0.14454339707945804 0.06963420124163959
0.18433333333333338 -0.14516357034250052 0.070166742101115134
0.18600000000000005 -0.14578338681858743 0.070702203823767629
0.18766666666666673 -0.14640284344727078 0.071240592603667205
0.18933333333333341 -0.14702193714677017 0.071781914687881213
0.19100000000000003 -0.14764066481369539 0.072326176376995149
0.19266666666666671 -0.148259023322765 0.072873384025640989
0.19433333333333339 -0.1488770095265198 0.073423544043032779
0.19600000000000006 -0.1494946202550323 0.073976662893509973
0.19766666666666674 -0.15011185231561114 0.07453274709708832
0.19933333333333342 -0.15072870249250109 0.075091803230018628
0.20100000000000004 -0.15134516754657779 0.075653837925353434
0.20266666666666672 -0.15196124421503795 0.076218857873521881
0.20433333333333339 -0.15257692921108426 0.076786869822912537
0.20600000000000007 -0.15319221922360515 0.077357880580464874
0.20766666666666675 -0.15380711091684945 0.077931897012269102
0.20933333333333343 -0.1544216009300956 0.078508926044174615
0.21100000000000005 -0.15503568587731537 0.079088974662407316
0.21266666666666673 -0.15564936234683213 0.07967204991419595
0.2143333333333334 -0.15626262690097328 0.080258158908407345
0.21600000000000008 -0.15687547607571703 0.080847308816191094
0.21766666666666676 -0.15748790638033308 0.081439506871633593
0.21933333333333344 -0.1580999142970175 0.082034760372421731
0.22100000000000006 -0.15871149628052117 0.08263307668051624
0.22266666666666673 -0.1593226487577723 0.083234463222835134
0.22433333333333341 -0.15993336812749206 0.083838927491947074
0.22600000000000009 -0.16054365075980406 0.084446477046775187
0.22766666666666677 -0.16115349299583689 0.085057119513311297
0.22933333333333344 -0.16176289114732004 0.085670862585340804
0.23100000000000007 -0.16237184149617251 0.086287714025178472
0.23266666666666674 -0.16298034029408487 0.086907681664415287
0.23433333333333342 -0.16358838376209331 0.08753077340467641
0.2360000000000001 -0.16419596809014697 0.088156997218390848
0.23766666666666678 -0.16480308943666722 0.088786361149572557
0.23933333333333345 -0.16540974392809929 0.089418873314613581
0.24100000000000008 -0.16601592765845624 0.090054541903089216
0.24266666666666675 -0.16662163668885457 0.090693375178575605
0.2443333333333334 -0.16722686704704157 0.091335381479479685
0.24600000000000005 -0.16783161472691455 0.091980569219882138
0.2476666666666667 -0.16843587568803101 0.092628946890393249
0.24933333333333335 -0.16903964585511047 0.093280523059022041
0.25100000000000006 -0.16964292111752685 0.09393530637205906
0.25266666666666671 -0.17024569732879202 0.094593305554972598
0.25433333333333336 -0.1708479703060298 0.095254529413319466
0.25600000000000001 -0.17144973582944034 0.095918986833669548
0.25766666666666665 -0.17205098964175472 0.09658668678454535
0.2593333333333333 -0.17265172744767956 0.097257638317376049
0.26100000000000007 -0.17325194491333124 0.097931850567467005
0.26266666666666671 -0.1738516376656597 0.098609332754984361
0.26433333333333336 -0.17445080129186161 0.099290094185955774
0.26600000000000001 -0.17504943133878248 0.099974144253286851
0.26766666666666666 -0.17564752331230749 0.10066149243779404
0.26933333333333331 -0.17624507267674092 0.10135214830925422
0.27100000000000007 -0.17684207485417386 0.10204612152747128
0.27266666666666672 -0.17743852522383985 0.10274342184335986
0.27433333333333337 -0.1780344191214584 0.10344405910004711
0.27600000000000002 -0.17862975183856561 0.1041480432339922
0.27766666666666667 -0.17922451862183242 0.10485538427612418
0.27933333333333332 -0.1798187146723691 0.10556609235299876
0.28100000000000008 -0.18041233514501692 0.10628017768797417
0.28266666666666673 -0.18100537514762541 0.10699765060240631
0.28433333333333338 -0.18159782974031605 0.10771852151686422
0.28600000000000003 -0.18218969393473122 0.1084428009523655
0.28766666666666668 -0.18278096269326843 0.10917049953163256
0.28933333333333333 -0.18337163092829928 0.10990162798037002
0.29100000000000009 -0.18396169350137334 0.1106361971285638
0.29266666666666674 -0.18455114522240551 0.11137421791180184
0.29433333333333339 -0.18513998084884778 0.11211570137261792
0.29600000000000004 -0.18572819508484395 0.11286065866185782
0.29766666666666669 -0.18631578258036727 0.11360910104006931
0.29933333333333334 -0.1869027379303409 0.1143610398789158
0.3010000000000001 -0.18748905567374011 0.11511648666261454
0.30266666666666675 -0.18807473029267638 0.11587545298939958
0.3043333333333334 -0.18865975621146275 0.11663795057301055
0.30600000000000005 -0.18924412779565958 0.117403991244207
0.3076666666666667 -0.18982783935110092 0.11817358695230952
0.30933333333333335 -0.1904108851229005 0.11894674976676795
0.31100000000000011 -0.19099325929443681 0.11972349187875729
0.31266666666666676 -0.19157495598631713 0.12050382560280172
0.31433333333333341 -0.19215596925531978 0.12128776337842796
0.31600000000000006 -0.19273629309331375 0.12207531777184771
0.31766666666666671 -0.19331592142615567 0.12286650147767053
0.31933333333333336 -0.19389484811256288 0.12366132732064747
0.32100000000000012 -0.1944730669429629 0.12445980825744629
0.32266666666666677 -0.19505057163831746 0.12526195737845869
0.32433333333333342 -0.1956273558489218 0.12606778790964082
0.32600000000000007 -0.19620341315317744 0.12687731321438731
0.32766666666666672 -0.19677873705633836 0.12769054679543942
0.32933333333333337 -0.19735332098922967 0.12850750229682881
0.33100000000000013 -0.19792715830693811 0.1293281935058572
0.33266666666666678 -0.19850024228747357 0.1301526343551124
0.33433333333333343 -0.19907256613040106 0.1309808389245227
0.33600000000000008 -0.19964412295544193 0.13181282144344925
0.33766666666666673 -0.2002149058010439 0.13264859629281772
0.33933333333333338 -0.2007849076229189 0.13348817800729079
0.34100000000000014 -0.20135412129254776 0.13433158127748132
0.34266666666666679 -0.20192253959565104 0.13517882095220771
0.34433333333333344 -0.20249015523062502 0.13602991204079287
0.34600000000000009 -0.20305696080694166 0.136884869715407
0.34766666666666673 -0.20362294884351181 0.13774370931345542
0.34933333333333338 -0.20418811176701057 0.13860644634001298
0.35100000000000015 -0.2047524419101637 0.13947309647030576
0.35266666666666679 -0.20531593150999389 0.14034367555224087
0.35433333333333344 -0.20587857270602614 0.14121819960898657
0.35600000000000009 -0.20644035753845064 0.14209668484160273
0.35766666666666674 -0.20700127794624207 0.1429791476317234
0.35933333333333339 -0.20756132576523423 0.14386560454429267
0.36100000000000015 -0.2081204927261486 0.14475607233035562
0.3626666666666668 -0.20867877045257555 0.14565056792990413
0.36433333333333345 -0.20923615045890676 0.14654910847478145
0.3660000000000001 -0.20979262414821728 0.14745171129164417
0.36766666666666675 -0.2103481828100964 0.1483583939049852
0.3693333333333334 -0.21090281761842472 0.14926917404021811
0.37100000000000016 -0.21145651962909701 0.15018406962682462
0.37266666666666681 -0.21200927977768838 0.15110309880156694
0.37433333333333346 -0.2125610888770626 0.15202627991176676
0.37600000000000011 -0.21311193761492039 0.15295363151865196
0.37766666666666676 -0.21366181655128635 0.15388517240077337
0.37933333333333341 -0.21421071611593218 0.15482092155749319
0.38100000000000017 -0.21475862660573461 0.1557608982125466
0.38266666666666682 -0.21530553818196599 0.15670512181767882
0.38433333333333347 -0.21585144086751532 0.15765361205635975
0.38600000000000012 -0.21639632454403754 0.15860638884757741
0.38766666666666677 -0.21694017894902912 0.15956347234971296
0.38933333333333342 -0.21748299367282742 0.16052488296449929
0.39100000000000018 -0.21802475815553141 0.16149064134106519
0.39266666666666683 -0.21856546168384147 0.16246076838006715
0.39433333333333348 -0.21910509338781556 0.16343528523791223
0.39600000000000013 -0.21964364223753888 0.16441421333107289
0.39766666666666678 -0.22018109703970484 0.16539757434049723
0.39933333333333343 -0.22071744643410379 0.16638539021611698
0.40100000000000019 -0.22125267889001696 0.1673776831814561
0.40266666666666684 -0.22178678270251242 0.16837447573834172
0.40433333333333349 -0.22231974598863991 0.16937579067172215
0.40600000000000014 -0.22285155668352086 0.17038165105459274
0.40766666666666679 -0.22338220253633068 0.17139208025303404
0.40933333333333344 -0.22391167110616922 0.17240710193136474
0.4110000000000002 -0.22443994975781612 0.17342674005741285
0.41266666666666685 -0.2249670256573667 0.1744510189079079
0.4143333333333335 -0.22549288576774482 0.17547996307399882
0.41600000000000015 -0.22601751684408802 0.17651359746689926
0.4176666666666668 -0.22654090542900113 0.17755194732366536
0.41933333333333345 -0.22706303784767323 0.17859503821310935
0.42100000000000021 -0.22758390020285366 0.17964289604185255
0.42266666666666686 -0.2281034783696822 0.1806955470605219
0.42433333333333351 -0.22862175799036791 0.18175301787009507
0.42600000000000016 -0.22913872446871153 0.18281533542839665
0.42766666666666681 -0.22965436296446623 0.18388252705675159
0.42933333333333346 -0.23016865838753012 0.18495462044679956
0.43100000000000022 -0.23068159539196542 0.18603164366747527
0.43266666666666687 -0.23119315836983764 0.18711362517215899
0.43433333333333352 -0.23170333144486793 0.18820059380600421
0.43600000000000017 -0.23221209846589216 0.18929257881344519
0.43766666666666681 -0.2327194430001199 0.19038960984589173
0.43933333333333346 -0.23322534832618508 0.19149171696961598
0.44100000000000023 -0.23372979742698127 0.19259893067383757
0.44266666666666687 -0.23423277298227388 0.19371128187901188
0.44433333333333352 -0.23473425736107945 0.19482880194533023
0.44600000000000017 -0.23523423261380483 0.19595152268143548
0.44766666666666682 -0.23573268046413623 0.1970794763533617
0.44933333333333347 -0.23622958230066859 0.19821269569370456
0.45100000000000023 -0.23672491916826563 0.19935121391102911
0.45266666666666688 -0.2372186717591403 0.20049506469952219
0.45433333333333353 -0.23771082040364355 0.20164428224889913
0.45600000000000018 -0.23820134506075141 0.20279890125456995
0.45766666666666683 -0.23869022530823789 0.20395895692807547
0.45933333333333348 -0.23917744033252045 0.20512448500780134
0.46100000000000024 -0.23966296891816646 0.20629552176997862
0.46266666666666689 -0.24014678943704637 0.20747210403998001
0.46433333333333354 -0.24062887983711778 0.20865426920392305
0.46600000000000019 -0.24110921763082799 0.20984205522058788
0.46766666666666684 -0.24158777988311753 0.21103550063366128
0.46933333333333349 -0.24206454319900825 0.21223464458431807
0.47100000000000025 -0.24253948371075959 0.21343952682415002
0.4726666666666669 -0.24301257706457521 0.2146501877284539
0.47433333333333355 -0.24348379840683823 0.21586666830989262
0.4760000000000002 -0.24395312236985867 0.21708901023253918
0.47766666666666685 -0.24442052305711057 0.21831725582631797
0.4793333333333335 -0.24488597402793558 0.2195514481018575
0.48100000000000026 -0.24534944828169222 0.22079163076576708
0.48266666666666691 -0.24581091824132681 0.22203784823635206
0.48433333333333356 -0.24627035573633604 0.22329014565978539
0.48600000000000021 -0.24672773198510056 0.22454856892674763
0.48766666666666686 -0.24718301757655783 0.22581316468955367
0.48933333333333351 -0.24763618245118382 0.22708398037978378
0.49100000000000027 -0.24808719588125522 0.22836106422643515
0.49266666666666692 -0.24853602645035977 0.22964446527461205
0.49433333333333357 -0.2489826420321134 0.23093423340477723
0.49600000000000022 -0.24942700976805676 0.23223041935257954
0.49766666666666687 -0.24986909604468763 0.2335330747292815
0.49933333333333352 -0.25030886646958755 0.23484225204280856
0.50100000000000022 -0.25074628584660413 0.23615800471944062
0.50266666666666693 -0.25118131815004408 0.23748038712616934
0.50433333333333363 -0.25161392649782072 0.23880945459374869
0.50600000000000034 -0.25204407312351806 0.24014526344045917
0.50766666666666704 -0.25247171934731083 0.24148787099661517
0.50933333333333375 -0.25289682554568349 0.24283733562984247
0.51100000000000023 -0.25331935111989395 0.24419371677115317
0.51266666666666694 -0.25373925446312073 0.24555707494184797
0.51433333333333364 -0.25415649292621295 0.246927471781278
0.51600000000000035 -0.25457102278199228 0.24830497007549657
0.51766666666666705 -0.25498279918802114 0.24968963378683495
0.51933333333333376 -0.2553917761477561 0.25108152808443751
0.52100000000000024 -0.25579790647001155 0.25248071937579136
0.52266666666666695 -0.25620114172664643 0.25388727533928762
0.52433333333333365 -0.25660143220835918 0.25530126495785616
0.52600000000000036 -0.25699872687851999 0.25672275855371185
0.52766666666666706 -0.25739297332491679 0.25815182782425533
0.52933333333333377 -0.25778411770930099 0.2595885458791739
0.53100000000000025 -0.25817210471462337 0.26103298727878627
0.53266666666666695 -0.25855687748983791 0.26248522807367908
0.53433333333333366 -0.25893837759210497 0.26394534584568685
0.53600000000000037 -0.25931654492629347 0.26541341975026445
0.53766666666666707 -0.25969131768160308 0.26688953056030601
0.53933333333333378 -0.26006263226513876 0.26837376071146696
0.54100000000000026 -0.26043042323228072 0.2698661943490453
0.54266666666666696 -0.2607946232136697 0.27136691737648133
0.54433333333333367 -0.26115516283855988 0.27287601750553991
0.54600000000000037 -0.26151197065439258 0.27439358430823718
0.54766666666666708 -0.26186497304232731 0.27591970927057807
0.54933333333333378 -0.26221409412847979 0.27745448584817445
0.55100000000000027 -0.2625592556906361 0.27899800952381304
0.55266666666666697 -0.26290037706017427 0.28055037786704579
0.55433333333333368 -0.26323737501882116 0.28211169059587859
0.55600000000000038 -0.26357016369002634 0.28368204964063526
0.55766666666666709 -0.2638986544245559 0.28526155921007512
0.55933333333333379 -0.26422275567992676 0.28685032585984438
0.56100000000000028 -0.26454237289333299 0.28844845856334655
0.56266666666666698 -0.26485740834765648 0.29005606878511486
0.56433333333333369 -0.26516776102998896 0.29167327055676673
0.56600000000000039 -0.26547332648233601 0.29330018055563661
0.5676666666666671 -0.26577399664389084 0.29493691818616685
0.5693333333333338 -0.26606965968428808 0.29658360566414033
0.57100000000000029 -0.26636019982730408 0.29824036810385091
0.57266666666666699 -0.26664549716436586 0.29990733360829741
0.5743333333333337 -0.26692542745697173 0.30158463336245939
0.5760000000000004 -0.26719986192751088 0.30327240172977099
0.57766666666666711 -0.26746866703751743 0.30497077635184705
0.57933333333333381 -0.26773170425242326 0.30667989825152098
0.58100000000000029 -0.26798882979196642 0.30839991193928507
0.582666666666667 -0.26823989436524309 0.31013096552319069
0.5843333333333337 -0.26848474288895408 0.31187321082218061
0.58600000000000041 -0.2687232141880368 0.31362680348297911
0.58766666666666711 -0.26895514067712023 0.31539190310049636
0.58933333333333382 -0.26918034802128288 0.31716867334170512
0.5910000000000003 -0.26939865477474906 0.31895728207302776
0.59266666666666701 -0.26960987199587322 0.32075790149117872
0.59433333333333371 -0.2698138028360183 0.32257070825717921
0.59600000000000042 -0.27001024210101238 0.32439588363364597
0.59766666666666712 -0.2701989757825925 0.32623361362502123
0.59933333333333383 -0.27037978055730283 0.3280840891204051
0.60100000000000031 -0.2705524232505796 0.32994750603884276
0.60266666666666702 -0.27071666026326424 0.33182406547667997
0.60433333333333372 -0.27087223695649243 0.33371397385602003
0.60600000000000043 -0.27101888699276089 0.33561744307425578
0.60766666666666713 -0.27115633162877145 0.337534690653574
0.60933333333333384 -0.2712842789557306 0.33946593988928081
0.61100000000000032 -0.27140242308324136 0.34141141999627184
0.61266666666666703 -0.27151044326206403 0.34337136625236087
0.61433333333333373 -0.27160800293875326 0.34534602013571314
0.61600000000000044 -0.27169474873839244 0.34733562945594298
0.61766666666666714 -0.27177030936780749 0.34934044847575851
0.61933333333333385 -0.27183429443176477 0.3513607380198473
0.62100000000000033 -0.27188629315541651 0.35339676556888888
0.62266666666666703 -0.27192587300477378 0.35544880533502149
0.62433333333333374 -0.27195257819304147 0.35751713831132031
0.62600000000000044 -0.27196592806615755 0.35960205229365594
0.62766666666666715 -0.27196541535426066 0.36170384186652177
0.62933333333333386 -0.27195050427612316 0.36382280834376302
0.63100000000000034 -0.27192062848463749 0.36595925965823806
0.63266666666666704 -0.27187518883909501 0.36811351019036209
0.63433333333333375 -0.27181355098359194 0.37028588051556294
0.63600000000000045 -0.2717350427196828 0.3724766970657078
0.63766666666666716 -0.27163895115078268 0.37468629168191703
0.63933333333333386 -0.27152451957717677 0.37691500103403952
0.64100000000000035 -0.27139094412082676 0.3791631658904081
0.64266666666666705 -0.27123737005666176 0.38143113021050751
0.64433333333333376 -0.27106288781941257 0.38371924000642743
0.64600000000000046 -0.27086652866525823 0.38602784195914935
0.64766666666666717 -0.27064725995518596 0.38835728172838574
0.64933333333333387 -0.27040398003396032 0.39070790188844995
0.65100000000000036 -0.2701355126715374 0.39308003944544578
0.65266666666666706 -0.26984060103817636 0.39547402286127081
0.65433333333333377 -0.26951790119152563 0.39789016843716835
0.65600000000000047 -0.26916597504399664 0.40032877601975736
0.65766666666666718 -0.26878328279135671 0.40279012386311724
0.65933333333333388 -0.26836817481917019 0.40527446246836024
0.66100000000000037 -0.26791888305407963 0.40778200728122194
0.66266666666666707 -0.26743351177893965 0.41031293005272446
0.66433333333333378 -0.26691002804793668 0.41286734848261347
0.66600000000000048 -0.26634625167768772 0.4154453140636864
0.66766666666666719 -0.26573984498902531 0.41804679770335523
0.66933333333333389 -0.26508830263547328 0.42067167273311262
0.67100000000000037 -0.2643889416012149 0.42331969502396471
0.67235352971241513 -0.26378381837188491 0.42548697331658192
0.67370705942482989 -0.26314363608683566 0.42766898122719776
0.67506058913724465 -0.2624666759291816 0.42986534878838745
0.67641411884965941 -0.2617511304079837 0.43207560998940858
0.67776764856207417 -0.26099510298100664 0.43429918913597848
0.6791211782744887 -0.26019660898534136 0.43653538573827944
0.68031062271595266 -0.25945822021206794 0.43851024601091421
0.68150006715741662 -0.2586839831151509 0.44049352992538021
0.68268951159888058 -0.2578723971259485 0.44248446002811176
0.68387895604034454 -0.25702192296345938 0.44448214298107069
0.6850684004818085 -0.25613098988128974 0.44648555852667415
0.68625784492327269 -0.2551980049438114 0.448493548217543
0.68745562782502834 -0.25421436011616716 0.45051891198320532
0.68865341072678399 -0.25318481208994098 0.4525460880065284
0.68985119362853964 -0.25210774889497356 0.45457340158169518
0.69104897653029529 -0.25098160125738567 0.45659899431064693
0.69224675943205094 -0.24980486692341128 0.45862081764786439
0.69344454233380659 -0.24857613839703729 0.46063662945056649
0.69462725031799133 -0.24731060472188834 0.46261879342311996
0.69580995830217596 -0.24599204559557949 0.46459019811875213
0.69699266628636058 -0.24461956403320911 0.46654815160405771
0.69817537427054521 -0.24319248229859308 0.46848981111786248
0.69935808225472984 -0.24171037571836332 0.47041220655339849
0.70054079023891469 -0.24017310486709487 0.47231227166554296
0.70157478727447953 -0.23878405984389822 0.47395268074438085
0.70260878431004437 -0.23735330627975007 0.47557153799152957
0.7036427813456092 -0.23588137644466581 0.47716676534310409
0.70467677838117404 -0.23436901216500147 0.47873633174732727
0.70571077541673888 -0.23281716468178831 0.48027828233262748
0.70674477245230372 -0.23122698941942302 0.48179076822985939
0.70777134845551981 -0.2296116417771554 0.48326155952144689
0.70879792445873591 -0.22796133841026461 0.48470009981617368
0.709824500461952 -0.2262777276015086 0.48610505207385596
0.7108510764651681 -0.2245625882713484 0.48747528087527148
0.71187765246838419 -0.22281780362994297 0.48880986827285794
0.71290422847160007 -0.22104533254204486 0.49010812482825084
0.71382523730740566 -0.21943321703204458 0.49124157829752285
0.71474624614321125 -0.21780188943827111 0.49234525222891473
0.71566725497901684 -0.21615280277462867 0.49341912992890641
0.71658826381482243 -0.21448738748965374 0.49446334091658178
0.71750927265062803 -0.21280703659878719 0.49547815464391443
0.71843028148643373 -0.21111309243420662 0.49646397261506914
0.71937923213205623 -0.20935489088502532 0.49744992497685442
0.72032818277767874 -0.20758493760546637 0.49840635178479747
0.72127713342330124 -0.20580446245822767 0.49933406716757406
0.72222608406892375 -0.2040145979693081 0.50023398829024945
0.72317503471454625 -0.20221637422012517 0.50110712333235685
0.72412398536016864 -0.20041071566623922 0.50195456013994277
0.72515320048322718 -0.19844487300822905 0.50284597102473161
0.72618241560628571 -0.19647214438568025 0.50371006996102241
0.72721163072934425 -0.19449328307376737 0.50454848269387687
0.72824084585240278 -0.19250889864878715 0.50536289553460012
0.72927006097546132 -0.19051946131356007 0.50615504766644681
0.73029927609851975 -0.18852530708038245 0.50692672593379218
0.73149800559624745 -0.18619703361074785 0.50780213035046451
0.73269673509397515 -0.18386275799178545 0.50865521892186083
0.73389546459170285 -0.18152238891938635 0.50948905045774406
0.73509419408943055 -0.1791756381623921 0.51030678355938452
0.73629292358715825 -0.17682203553134512 0.51111169550747182
0.73749165308488618 -0.17446094455780062 0.51190720816070767
0.73858479141143141 -0.17230064202904147 0.51262749564340571
0.73967792973797664 -0.17013277022255943 0.51334584620804713
0.74077106806452186 -0.16795656479665164 0.51406533296260659
0.74186420639106709 -0.16577120592593625 0.51478925231135975
0.74295734471761232 -0.16357584317823273 0.51552116909581858
0.74405048304415766 -0.16136962771059338 0.51626496897289331
0.74465741424018261 -0.160139709884282 0.51668462271074322
0.74526434543620756 -0.15890607056199374 0.51711003457461824
0.74587127663223252 -0.15766859710944048 0.51754203852750458
0.74647820782825747 -0.15642719489470541 0.5179815187545822
0.74708513902428242 -0.15518179269799354 0.51842941364627115
0.74769207022030748 -0.15393234906937914 0.51888671978942325
0.74815614533455654 -0.15297426178253751 0.51924339277293174
0.74862022044880561 -0.15201382405708097 0.51960668465283888
0.74908429556305467 -0.15105106997456114 0.51997711761026988
0.74954837067730373 -0.15008605482106468 0.52035523768531222
0.7500124457915528 -0.14911885832896826 0.5207416151900065
0.75047652090580186 -0.14814958826406308 0.52113684484769374
@tonyfast
Copy link

@robclewley If you change the full model field to an array your visualization will work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment