Skip to content

Commit

Permalink
saving the config file
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Lurie committed May 4, 2017
1 parent 4c48559 commit 4f5cfcf
Show file tree
Hide file tree
Showing 2 changed files with 219 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ShaderNavigator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
// loads the octree of texture chunks
quadScene.loadData({
datatype: "precomputed_octree_tiles",
url: "../data_raster/info2.json"
url: "../data_raster/config.json"
//url: "../data_rasterSSD/info2.json"

//url: "http://ace-toroviewer-2.acelab.ca/data/bigbrainchunks/config.json"
Expand Down
218 changes: 218 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,218 @@
{
"data_type":"uint8",
"num_channels":1,
"type":"image",
"axisInfo": {
"x": {
"name": "sagittal",
"originalSize": 6572,
"offset": 810,
"finalSize": 8192,
"minName": "left",
"maxName": "right",
"reversed": true
},
"y": {
"name": "coronal",
"originalSize": 7404,
"offset": 0,
"finalSize": 8192,
"minName": "posterior",
"maxName": "anterior",
"reversed": false
},
"z": {
"name": "axial",
"originalSize": 5711,
"offset": 1240,
"finalSize": 8192,
"minName": "inferior",
"maxName": "superior",
"reversed": true
}
},
"scales":[
{
"encoding":"jpeg",
"chunk_sizes":[
[
64,
64,
64
]
],
"key":"20um",
"resolution":[
20000,
20000,
20000
],
"size":[
8192,
8192,
8192
],
"voxel_offset":[
0,
0,
0
]
},
{
"encoding":"jpeg",
"chunk_sizes":[
[
64,
64,
64
]
],
"key":"40um",
"resolution":[
40000,
40000,
40000
],
"size":[
4096,
4096,
4096
],
"voxel_offset":[
0,
0,
0
]
},
{
"encoding":"jpeg",
"chunk_sizes":[
[
64,
64,
64
]
],
"key":"80um",
"resolution":[
80000,
80000,
80000
],
"size":[
2048,
2048,
2048
],
"voxel_offset":[
0,
0,
0
]
},
{
"encoding":"jpeg",
"chunk_sizes":[
[
64,
64,
64
]
],
"key":"160um",
"resolution":[
160000,
160000,
160000
],
"size":[
1024,
1024,
1024
],
"voxel_offset":[
0,
0,
0
]
},
{
"encoding":"jpeg",
"chunk_sizes":[
[
64,
64,
64
]
],
"key":"320um",
"resolution":[
320000,
320000,
320000
],
"size":[
512,
512,
512
],
"voxel_offset":[
0,
0,
0
]
},
{
"encoding":"jpeg",
"chunk_sizes":[
[
64,
64,
64
]
],
"key":"640um",
"resolution":[
640000,
640000,
640000
],
"size":[
256,
256,
256
],
"voxel_offset":[
0,
0,
0
]
},
{
"encoding":"jpeg",
"chunk_sizes":[
[
64,
64,
64
]
],
"key":"1280um",
"resolution":[
1280000,
1280000,
1280000
],
"size":[
128,
128,
128
],
"voxel_offset":[
0,
0,
0
]
}
]
}

0 comments on commit 4f5cfcf

Please sign in to comment.