Minor fixes

docs
Alinson S. Xavier 5 years ago
parent 37c3db1c5b
commit ac5bb87ce2

@ -149,11 +149,11 @@
<li><a href="usage/">Usage</a></li>
<li><a href="format/">Input and Output Data Formats</a></li>
<li><a href="reports/">Simplified Solution Reports</a></li>
<li><a href="model/">Optimization model</a></li>
<li><a href="model/">Optimization Model</a></li>
</ul>
<h3 id="source-code">Source Code</h3>
<ul>
<li><a href="https://anl-ceeesa.github.io/RELOG/">https://anl-ceeesa.github.io/RELOG/</a></li>
<li><a href="https://github.com/ANL-CEEESA/RELOG">https://github.com/ANL-CEEESA/RELOG</a></li>
</ul>
<h3 id="authors">Authors</h3>
<ul>
@ -290,5 +290,5 @@ POSSIBILITY OF SUCH DAMAGE.
<!--
MkDocs version : 1.1.2
Build Date UTC : 2020-09-18 16:19:12.522909+00:00
Build Date UTC : 2020-09-18 16:31:44.900364+00:00
-->

@ -252,7 +252,7 @@ In the third line, we have the disposal costs.</p>
\end{align}</script>
</p>
<ul>
<li>A plant is operation at time $t$ if it was operational at time $t-1$ or it was built at time $t$. This constraint also prevents a plant from being built multiple times.</li>
<li>A plant is operational at time $t$ if it was operational at time $t-1$ or it was built at time $t$. This constraint also prevents a plant from being built multiple times.</li>
</ul>
<p>
<script type="math/tex; mode=display">\begin{align}

@ -245,11 +245,12 @@ import geopandas as gp
# Plot base map
world = gp.read_file(gp.datasets.get_path('naturalearth_lowres'))
world = world[world.continent == 'North America']
ax = world.plot(color='white', edgecolor='50', figsize=(15,15))
ax = world.plot(color='white', edgecolor='50', figsize=(13,6))
ax.set_ylim([23, 50])
ax.set_xlim([-128, -65])
# Plot plant locations
data = pd.read_csv(&quot;plants_report.csv&quot;)
data = pd.read_csv(&quot;nimh_plants.csv&quot;)
points = gp.points_from_xy(data[&quot;longitude (deg)&quot;],
data[&quot;latitude (deg)&quot;])
gp.GeoDataFrame(data, geometry=points).plot(ax=ax);

File diff suppressed because one or more lines are too long

Binary file not shown.
Loading…
Cancel
Save