-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
93 lines (93 loc) · 4.11 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PIVoT: Permian Interactive Visualization of Typecurves</title>
<link rel="shortcut icon" type="image/png" href="favicon.png">
<script type="text/javascript" src="hyperbolic.js"></script>
<script type="text/javascript" src="convex.js"></script>
<script type="text/javascript" src="bestfit.js"></script>
<script type="text/javascript" src="typecurve.js"></script>
<script type="text/javascript" src="ihs.json"></script>
<script type="text/javascript" src="machina.js"></script>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.3/leaflet.js"></script>
<script type="text/javascript" src="markercluster/leaflet.markercluster.js"></script>
<link rel="stylesheet" type="text/css" href="markercluster/MarkerCluster.css">
<link rel="stylesheet" type="text/css" href="markercluster/MarkerCluster.Default.css">
<script type="text/javascript" src="leafletdraw/leaflet.draw.js"></script>
<link rel="stylesheet" type="text/css" href="leafletdraw/leaflet.draw.css">
<script type="text/javascript" src="visualizer.js"></script>
<link rel="stylesheet" type="text/css" href="typecurve.css">
</head>
<body>
<div id="working" class="fullscreen"><p>Working...</div>
<div id="header">
<h1>PIVoT</h1>
<h2>{ Permian Interactive Visualization of Typecurves }</h2>
<div class="breaker"></div>
</div>
<div id="container">
<h2>Selected Wells Typecurve</h2>
<div id="graph"></div>
<div id="control">
<p>From: <select id="from-month"></select>
<p>To: <select id="to-month"></select>
<p>Operator:
<select id="operator">
<option>All</option>
</select>
<p>Aggregation:
<select id="aggregate">
<option>Average</option>
<option>P90</option>
<option>P50</option>
<option>P10</option>
</select>
</div>
<div id="params">
<div class="decline-params oil">
<h3>Oil decline</h3>
<p>Well count = <span id="oil_wells">0</span>
<p>q<sub>i</sub> = <span id="oil_qi">1000</span> bbl/day
<p>D<sub>i</sub> = <span id="oil_Di">95</span>% sec. eff. / year
<p>b = <span id="oil_b">2</span>
<p>EUR = <span id="oil_eur">100</span> Mstb
</div>
<div class="decline-params gas">
<h3>Gas decline</h3>
<p>Well count = <span id="gas_wells">0</span>
<p>q<sub>i</sub> = <span id="gas_qi">1000</span> Mcf/day
<p>D<sub>i</sub> = <span id="gas_Di">95</span>% sec. eff. / year
<p>b = <span id="gas_b">2</span>
<p>EUR = <span id="gas_eur">100</span> MMscf
</div>
<div class="decline-params" id="eur-options">
<h3>EUR calculation options</h3>
<p>Economic limit (bbl/d):
<input type="text" id="econ-limit" value="1.0" size="5">
<p>Time limit (years):
<input type="text" id="time-limit" value="30.0" size="5">
<p>Terminal decline (% eff. / year):
<input type="text" id="d-final" value="5.0" size="5">
</div>
<div class="breaker"></div>
</div>
<div id="map-box">
<h2>Selected Wells</h2>
<div id="map"></div>
<p>double-click to clear selection polygon
<p><a href="#export-table-overlay" id="export-link">export table of selected wells</a>
</div>
</div>
<div id="footer">
<h5>an experimental production by dwt | <a href="http://www.terminusdatascience.com">terminus data science, LLC</a></h5>
</div>
<div id="export-table-overlay">
<table id="export-table"></table>
<div id="export-table-close"><a href="#">X</a></div>
<div id="export-table-select"><a href="#export-table-overlay">select all</a></div>
</div>
</body>
<html>