mirror of
https://github.com/ANL-CEEESA/RELOG.git
synced 2025-12-06 07:48:50 -06:00
Minor fixes
This commit is contained in:
@@ -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("plants_report.csv")
|
||||
data = pd.read_csv("nimh_plants.csv")
|
||||
points = gp.points_from_xy(data["longitude (deg)"],
|
||||
data["latitude (deg)"])
|
||||
gp.GeoDataFrame(data, geometry=points).plot(ax=ax);
|
||||
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
Reference in New Issue
Block a user