Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into 2024-refactoring-RF2
Browse files Browse the repository at this point in the history
  • Loading branch information
spond committed Jan 31, 2025
2 parents f1bc9a7 + 388de89 commit bea6e0b
Show file tree
Hide file tree
Showing 28 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion html/network.html
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ <h4 class="modal-title">Listing nodes in cluster X</h4>

var initialize_cluster_network_graphs = function () {
//Initialize clusternetworkgraph with json url
url = "/sample_data/workshop/DummyNetworkAttributes.json";
url = "/test/workshop/DummyNetworkAttributes.json";

d3.json(url, function (error, results) {
if (error) {
Expand Down
4 changes: 2 additions & 2 deletions html/plain.html
Original file line number Diff line number Diff line change
Expand Up @@ -895,8 +895,8 @@ <h4 class="modal-title">Listing nodes in cluster X</h4>

var initialize_cluster_network_graphs = function () {
//Initialize clusternetworkgraph with json url
url = "/sample_data/example/example.json";
//url = "sample_data/LA.json"
url = "/test/example/example.json";
//url = "test/LA.json"

d3.json(url, function (error, results) {
if (error) {
Expand Down
8 changes: 4 additions & 4 deletions html/social.html
Original file line number Diff line number Diff line change
Expand Up @@ -928,8 +928,8 @@ <h4 class="modal-title">Listing nodes in cluster X</h4>
var initialize_cluster_network_graphs = function () {
//Initialize clusternetworkgraph with json url
url =
"../sample_data/workshop/SocialDemoFiles/SocialNetwork.trace.json";
//url = "sample_data/LA.json"
"../test/workshop/SocialDemoFiles/SocialNetwork.trace.json";
//url = "test/LA.json"

d3.json(url, function (error, results) {
if (error) {
Expand Down Expand Up @@ -1099,10 +1099,10 @@ <h4 class="modal-title">Listing nodes in cluster X</h4>
});

d3.csv(
"../sample_data/workshop/SocialDemoFiles/SocialAttributes.csv",
"../test/workshop/SocialDemoFiles/SocialAttributes.csv",
function (error, nodes) {
d3.csv(
"../sample_data/workshop/SocialDemoFiles/SocialEdges.csv",
"../test/workshop/SocialDemoFiles/SocialEdges.csv",
function (error, edges) {
_loaded_network_data["nodes"] = nodes;
_loaded_network_data["edges"] = edges;
Expand Down
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -969,10 +969,10 @@ <h4 class="modal-title">Listing nodes in cluster X</h4>

var initialize_cluster_network_graphs = function () {
//Initialize clusternetworkgraph with json url
url = "sample_data/example/example.json";
//url = "sample_data/example/vl_recent_value_adj.json";
//url = "sample_data/example/example_with_random_countries.json" // For testing the mapping feature.
//url = "sample_data/LA.json"
url = "test/example/example.json";
//url = "test/example/vl_recent_value_adj.json";
//url = "test/example/example_with_random_countries.json" // For testing the mapping feature.
//url = "test/LA.json"
//url = "private/new.json";

d3.json(url, function (error, results) {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit bea6e0b

Please sign in to comment.