Public
Edited
Jan 16, 2024
1 star
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
prebuilt_minimal_styles_by_curvename = [{
//// Add your own curvenames and map them to a style, then define the style in second part of JSON.
"mapping_curvename_to_stylename":{
"GR":"GammaRay",
"GR1":"GammaRay",
"Gamma-ray":"GammaRay",
"Caliper":"Caliper",
"Cal":"Caliper",
"CALI":"Caliper",
"ILD":"Resititivity_1",
"ild":"Resititivity_1",
"RESD":"Resititivity_1",
"RES":"Resititivity_1",
"Res":"Resititivity_1",
"RHOB":"Caliper",
"BS":"BS"
},
"styles":{
"GammaRay":{
"line_color":"pink",
"fill":"yes",
"fill_direction":"right",
"cutoffs":[0,ShaleSiltCutOff,SiltSandCutOff],
"fill_colors":["yellow","orange","gray"]
},
"Resititivity_1":{
"line_color":"red",
"fill":"yes",
"fill_direction":"left",
"cutoffs":[5,10,25],
"fill_colors":["#ffe6e6","#ffb3b3","red"]
},
"Caliper":{
"line_color":"purple",
"fill":"yes",
"fill_direction":caliper_fill_direction,
"cutoffs":[0],
"fill_colors":["#dbdbdb"]
},
"BS":{
"line_color":"purple",
"fill":"yes",
"fill_direction":caliper_fill_direction,
"cutoffs":[9],
"fill_colors":["purple"]
},
"all_others":{
"line_color":"black",
"fill":"yes",
"fill_direction":"left",
"cutoffs":[0],
"fill_colors":["gray"]
}
}
}]
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
string_of_well_uploaded_from_local_computer = "YOU NEED TO SWITCH OUT WHICH LINE IS COMMENTED OUT, BELOW UNDER LOAD OPTION 2, BEFORE THIS WILL WORK"
//string_of_well_uploaded_from_local_computer = await string_of_well_uploaded_from_local_computer_file.text()
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
well_in_json_format_0 = checkIfString(selected_well_as_string)
Insert cell
function handleNullsForD3(well_in_json_format_01,null_str){
var well_in_json_format_new = JSON.parse(JSON.stringify( well_in_json_format_01 ));
var curve_names = Object.keys(well_in_json_format_new["CURVES"])
for (var i = 0; i < curve_names.length; i++) {
var curve_data = well_in_json_format_new["CURVES"][curve_names[i]]
function replaceNulls(data_str){
return data_str.replace(null_str,0)
}
well_in_json_format_new["CURVES"][curve_names[i]] = curve_data.map(replaceNulls)
}
return well_in_json_format_new
}
Insert cell
well_in_json_format = handleNullsForD3(well_in_json_format_0,value_for_nulls)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
function findDepthName(well_log_in_json){
var curve_names_array = Object.keys(well_log_in_json.CURVES)
var dep = curve_names_array.find(a =>a.includes("dep"));
var Dep = curve_names_array.find(a =>a.includes("Dep"));
var DEP = curve_names_array.find(a =>a.includes("DEP"));
if(dep){return dep}
if(Dep){return Dep}
if(DEP){return DEP}
else{return "couldn't find depth curve name"}
}
Insert cell
depth_curve_name = findDepthName(well_in_json_format)
Insert cell
three_things_2 = wellioviz.fromJSONofWEllGetThingsForPlotting(well_in_json_format,depth_curve_name)
Insert cell
Insert cell
Insert cell
Insert cell
well_log_curves_reformatted_for_d3_2 = three_things_2["well_log_curves_reformatted_for_d3"]
Insert cell
Insert cell
Insert cell
Insert cell
example_template_0 = wellioviz.curveBoxTemplateExamples("example")
Insert cell
function getExampleTemplateWithEdits(height_multiplier){
var example_template1 = wellioviz.curveBoxTemplateExamples("example")
var multiplier = parseFloat(height_multiplier)
var header_sep_svg_or_not = "yes"
example_template1[0]["curve_box"]["height_multiplier_components"] = multiplier;
example_template1[0]["curve_box"]["header_sep_svg_or_not"] = header_sep_svg_or_not
example_template1[0]["curve_box"]["title"]["text"] = uwi2;
// example_template1[0]["curve_box"]["show_title"] = "yes"
// example_template1[0]["curve_box"]["svg_header_height"] = svg_header_height;
example_template1[0]["components"][0]["rectangles"][0]["depth_top"] = -9999999;
example_template1[0]["components"][0]["rectangles"][0]["height"] = 0;
return example_template1
}
Insert cell
example_template = getExampleTemplateWithEdits(height_multiplier_components)
Insert cell
example_template
Insert cell
Insert cell
Insert cell
well_log_curves_reformatted_for_d3_2
Insert cell
function forMultipleCurvesMinimumDataIntoTemplateFunc(curves_to_skip,prebuilt_minimal_styles_by_curvename){
var array_of_jsons_for_what_to_plot = []
var array_curvenames = Object.keys(well_log_curves_reformatted_for_d3_2[0])
var UWI_index = array_curvenames.indexOf("UWI")
array_curvenames.splice(UWI_index, 1)
for (var i = 0; i < array_curvenames.length; i++) {
if(curves_to_skip[0]["curves_to_skip_if_present"].includes(array_curvenames[i])){}
else{
if(curves_to_skip[0]["only_curves_to_include_if_present"].includes(array_curvenames[i]) || curves_to_skip[0]["only_curves_to_include_if_present"].length == 0 ){
///// Get Styles if they exist, if not, use "all_others"
var style = prebuilt_minimal_styles_by_curvename[0]["styles"]["all_others"]
if(prebuilt_minimal_styles_by_curvename[0]["mapping_curvename_to_stylename"][array_curvenames[i]]){
var stylename = prebuilt_minimal_styles_by_curvename[0]["mapping_curvename_to_stylename"][array_curvenames[i]]
style = prebuilt_minimal_styles_by_curvename[0]["styles"][stylename]
}
var json_template_for_plotting = wellioviz.minimumDataIntoTemplateFunc(example_template,well_log_curves_reformatted_for_d3_2,[uwi2], [array_curvenames[i]],[style["line_color"]],[""],[
{"curve_name":array_curvenames[i],"fill":style["fill"],"fill_direction":style["fill_direction"],"cutoffs": style["cutoffs"],"fill_colors": style["fill_colors"],"curve2":""}],"well_holder_1A",200,400,depth_curve_name)
///
array_of_jsons_for_what_to_plot.push(json_template_for_plotting)
}
}
}
return array_of_jsons_for_what_to_plot
}
Insert cell
array_of_plotting_jsons = forMultipleCurvesMinimumDataIntoTemplateFunc(curves_to_skip,prebuilt_minimal_styles_by_curvename)
Insert cell
Insert cell
Insert cell
Insert cell
// result_1 = wellioviz.multipleLogPlot("well_holder",[gr_plot_template_noFill,gr_plot_template_1,resd_plot_template_1,poro_plot_template_1])
result_1 = wellioviz.multipleLogPlot("well_holder",array_of_plotting_jsons)
Insert cell
Insert cell
Insert cell
// viewof SiltSandCutOff = slider({
// min: 0,
// max: 100,
// step: 1,
// value: 97,
// format: ",",
// description:
// "experimental shale/silt cutoff slider"
// })
Insert cell
// viewof ShaleSiltCutOff = slider({
// min: 0,
// max: 100,
// step: 2,
// value: 88,
// format: ",",
// description:
// "experimental silt/sand cutoff slider"
// })
Insert cell
// viewof height_multiplier_components = slider({
// min: 1,
// max: 10,
// step: 0.25,
// value: 2,
// // format: ",",
// description:
// "vertical scaler"
// })
Insert cell
// viewof caliper_fill_direction = radio({
// title: 'Change direction of fill for any curve name grouped in caliper log style',
// description: '',
// options: [
// { label: 'left', value: 'left'},
// { label: 'right', value: 'right'},
// ],
// value: 'left'
// })
Insert cell
// viewof value_for_nulls = text({placeholder: 'example -999.2500 default is ""', description: "Input a value for nulls. These will be convered to empty strings so D3.js handles them properly", submit: "Apply"})
Insert cell
// viewof which_way = radio({
// title: 'This controls which load method is used to load a well --- AND MUST BE CHANGED IF YOU WANT TO CHANGE HOW WELL IS LOADED',
// description: '',
// options: [
// { label: 'gist', value: 'gist'},
// { label: 'local', value: 'local'},
// { label: 'zip at ulr', value: 'zip'}
// ],
// value: 'gist'
// })
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more