parametrized coefficients

This commit is contained in:
Ilya Zverev 2015-03-31 12:34:07 +03:00
parent 6cae745098
commit 04e97ea12a
4 changed files with 23 additions and 14 deletions

View file

@ -207,7 +207,7 @@ function selectLayer(e) {
if( props['disabled'] )
e.target.setStyle({ fillOpacity: 0.01 });
$('#b_name').text(props['name']);
$('#b_size').text(Math.round(props['count_k'] * 8 / 1024 / 1024) + ' MB');
$('#b_size').text(Math.round(props['count_k'] * window.BYTES_FOR_NODE / 1024 / 1024) + ' MB');
//$('#b_nodes').text(borders[selectedId].layer.getLatLngs()[0].length);
$('#b_nodes').text(props['nodes']);
$('#b_date').text(props['modified']);
@ -244,9 +244,9 @@ function getColor(props) {
if( fType == 'size' ) {
if( props['count_k'] <= 0 )
color = FILL_ZERO;
else if( props['count_k'] * 8 < size_good * 1024 * 1024 )
else if( props['count_k'] * window.BYTES_FOR_NODE < size_good * 1024 * 1024 )
color = FILL_TOO_SMALL;
else if( props['count_k'] * 8 > size_bad * 1024 * 1024 )
else if( props['count_k'] * window.BYTES_FOR_NODE > size_bad * 1024 * 1024 )
color = FILL_TOO_BIG;
} else if( fType == 'topo' ) {
var rings = countRings([0, 0], props.layer);

View file

@ -1,3 +1,5 @@
window.BYTES_FOR_NODE = 8;
function getServer(endpoint) {
var server = '/borders-api';
return endpoint ? server + '/' + endpoint : server;

View file

@ -32,15 +32,15 @@
<div>
Размер MWM до 1 МБ: <span id="sizes_1mb"></span> (<a href="#" onclick="return statOpen('sizes_1mb_list');">список</a>)<br>
<div id="sizes_1mb_list" class="h"></div>
Размер MWM больше 50 МБ: <span id="sizes_50mb"></span> (<a href="#" onclick="return statOpen('sizes_50mb_list');">список</a>)<br>
Размер MWM больше <span class="mb_limit"></span> МБ: <span id="sizes_50mb"></span> (<a href="#" onclick="return statOpen('sizes_50mb_list');">список</a>)<br>
<div id="sizes_50mb_list" class="h"></div>
Из них больше 100 МБ: <span id="sizes_100mb"></span> (<a href="#" onclick="return statOpen('sizes_100mb_list');">список</a>)<br>
Из них больше <span class="mb_limit2"></span> МБ: <span id="sizes_100mb"></span> (<a href="#" onclick="return statOpen('sizes_100mb_list');">список</a>)<br>
<div id="sizes_100mb_list" class="h"></div>
</div>
<div>
Регионов меньше 100 км²: <span id="areas_100km"></span> (<a href="#" onclick="return statOpen('areas_100km_list');">список</a>)<br>
Регионов меньше <span class="km_limit"></span> км²: <span id="areas_100km"></span> (<a href="#" onclick="return statOpen('areas_100km_list');">список</a>)<br>
<div id="areas_100km_list" class="h"></div>
Регионов с 50k+ точек в контуре: <span id="areas_50k_points"></span> (<a href="#" onclick="return statOpen('areas_50k_points_list');">список</a>)<br>
Регионов от <span class="point_limit"></span> тысяч точек в контуре: <span id="areas_50k_points"></span> (<a href="#" onclick="return statOpen('areas_50k_points_list');">список</a>)<br>
<div id="areas_50k_points_list" class="h"></div>
Регионов до 50 точек в контуре: <span id="areas_100_points"></span> (<a href="#" onclick="return statOpen('areas_100_points_list');">список</a>)<br>
<div id="areas_100_points_list" class="h"></div>
@ -53,7 +53,7 @@
<div id="topo_holes_list" class="h"></div>
Регионов из нескольких частей: <span id="topo_multi"></span> (<a href="#" onclick="return statOpen('topo_multi_list');">список</a>)<br>
<div id="topo_multi_list" class="h"></div>
Регионов с островами меньше 100 км²: <span id="topo_100km"></span> (<a href="#" onclick="return statOpen('topo_100km_list');">список</a>)<br>
Регионов с островами меньше <span class="km_limit"></span> км²: <span id="topo_100km"></span> (<a href="#" onclick="return statOpen('topo_100km_list');">список</a>)<br>
<div id="topo_100km_list" class="h"></div>
<hr>
</div>

View file

@ -1,4 +1,11 @@
var MB_LIMIT = 50, MB_LIMIT2 = 80;
var KM_LIMIT = 50, POINT_LIMIT = 50000;
function statInit() {
$('.mb_limit').text(MB_LIMIT);
$('.mb_limit2').text(MB_LIMIT2);
$('.km_limit').text(KM_LIMIT);
$('.point_limit').text(Math.round(POINT_LIMIT / 1000));
statQuery('total', statTotal);
}
@ -80,21 +87,21 @@ function statSizes(data) {
for( var i = 0; i < data.regions.length; i++ ) {
region = data.regions[i];
if( region.area > 0 && region.area < 100 )
if( region.area > 0 && region.area < KM_LIMIT )
list_100km.push(region);
if( region.area <= 0 )
list_zero.push(region);
if( region.nodes > 50000 )
if( region.nodes > POINT_LIMIT )
list_100kp.push(region);
if( region.nodes < 50 )
list_100p.push(region);
var size_mb = region.size * 8 / 1024 / 1024;
var size_mb = region.size * window.BYTES_FOR_NODE / 1024 / 1024;
region.size_mb = size_mb;
if( size_mb < 1 )
list_1mb.push(region);
if( size_mb > 50 )
if( size_mb > MB_LIMIT )
list_50mb.push(region);
if( size_mb > 100 )
if( size_mb > MB_LIMIT2 )
list_100mb.push(region);
if( !/^[\x20-\x7F]*$/.test(region.name) )
list_bad.push(region);
@ -137,7 +144,7 @@ function statTopo(data) {
list_multi.push(region);
if( region.inner > 0 )
list_holed.push(region);
if( region.outer > 1 && region.min_area > 0 && region.min_area < 100 )
if( region.outer > 1 && region.min_area > 0 && region.min_area < KM_LIMIT )
list_100km.push(region);
}