Skip to content

Commit 703d445

Browse files
changed file separator to colon and removed log statements + pycache
1 parent b5186f6 commit 703d445

17 files changed

Lines changed: 17 additions & 13 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ js/*
66
!python
77
python/sample_composites/composite_average.out
88
/python/sample_composites
9+
/python/__pycache__

js/events/load_composite_button.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ $(function() {
1919
$("#metadata-table").metadata_table("add_row", [id]);
2020
$("#settings-table").settings_table("add_row", [id]);
2121
};
22-
console.log(prefixes)
2322

2423
$("#settings-table").settings_table("plot_all_composites", {xmin: xmin, xmax: xmax, ymax: ymax}, allow_shrink=true);
2524
$("#main-plot").main_plot("update_legend")

js/parse_composite.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ let parse_multiple_composite = function(text, prefix) {
129129
if (col0 === "" || col0 === "NAME") {
130130
// If the x domain is defined, save the composite
131131
if (save_comp) {
132-
console.log(id)
133132
composites[id] = {xmin: xmin, xmax: xmax, sense: sense, anti: anti}
134133
};
135134
save_comp = false;
@@ -143,7 +142,6 @@ let parse_multiple_composite = function(text, prefix) {
143142
}
144143
} else if (col0.startsWith(prefix)){
145144
id = col0.slice(prefix.length).split("_")[0];
146-
console.log(id)
147145
save_comp = true;
148146
if (col0.toLowerCase().includes("sense")) {
149147
sense = fields.slice(1).map(parseFloat)
@@ -162,6 +160,5 @@ let parse_multiple_composite = function(text, prefix) {
162160
if (save_comp) {
163161
composites[id] = {xmin: xmin, xmax: xmax, sense: sense, anti: anti}
164162
};
165-
console.log(composites)
166163
return composites
167164
}

js/widgets/main_plot.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,6 @@ $(function() {
315315

316316
plot_composite: function(xmin, xmax, sense, anti, scale, color, secondary_color, i, opacity, smoothing, bp_shift, hide, hide_sense=false, hide_anti=false, baseline=0) {
317317
// Set composite visibility
318-
console.log("xmin:" + xmin)
319-
console.log("xmax:" + xmax)
320318
let composite = this._elements.composites[i]
321319
.classed("plotted", !hide)
322320
.style("display", hide ? "none" : null),
@@ -347,7 +345,6 @@ $(function() {
347345
scaled_occupancy = smoothed_occupancy.filter((_, j) => new_xdomain[j] >= this.xmin && new_xdomain[j] <= this.xmax)
348346
.map(d => ((value = d * scale + baseline) > 0)? value: 0);
349347

350-
console.log(truncated_xdomain)
351348
// Set fill color
352349
composite.select(".composite-gradient-top")
353350
.selectAll("stop")
-5.83 KB
Binary file not shown.
-3.38 KB
Binary file not shown.
-7.02 KB
Binary file not shown.
-4.12 KB
Binary file not shown.
-43.9 KB
Binary file not shown.
-8.63 KB
Binary file not shown.

0 commit comments

Comments
 (0)