|
|
|
@ -196,12 +196,12 @@ export default function Countries({ mapOptions, onMapOptionClick }) {
|
|
|
|
<p className="text-sm font-medium">{currentParameter.label} в {currentYear.label} году</p>
|
|
|
|
<p className="text-sm font-medium">{currentParameter.label} в {currentYear.label} году</p>
|
|
|
|
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400">
|
|
|
|
<table className="w-full text-sm text-left text-gray-500 dark:text-gray-400">
|
|
|
|
<tbody>
|
|
|
|
<tbody>
|
|
|
|
{info.power_fact_mw != null &&
|
|
|
|
{info[currentParameter.value] != null &&
|
|
|
|
<tr className="bg-white border-b dark:bg-gray-800 dark:border-gray-700">
|
|
|
|
<tr className="bg-white border-b dark:bg-gray-800 dark:border-gray-700">
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
{currentTech.label}
|
|
|
|
{currentTech.label}
|
|
|
|
</th>
|
|
|
|
</th>
|
|
|
|
<td className="px-2 py-4">
|
|
|
|
<td className="px-2 py-4 text-right">
|
|
|
|
{info[currentParameter.value].toFixed(1).replace(".", ",")}
|
|
|
|
{info[currentParameter.value].toFixed(1).replace(".", ",")}
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
@ -221,7 +221,7 @@ export default function Countries({ mapOptions, onMapOptionClick }) {
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
Солнечные электростанции
|
|
|
|
Солнечные электростанции
|
|
|
|
</th>
|
|
|
|
</th>
|
|
|
|
<td className="px-2 py-4">
|
|
|
|
<td className="px-2 py-4 text-right">
|
|
|
|
{info.static_power_fact_solar_mw.toFixed(1).replace(".", ",")}
|
|
|
|
{info.static_power_fact_solar_mw.toFixed(1).replace(".", ",")}
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
@ -231,7 +231,7 @@ export default function Countries({ mapOptions, onMapOptionClick }) {
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
Наземные ветроэлектростанции
|
|
|
|
Наземные ветроэлектростанции
|
|
|
|
</th>
|
|
|
|
</th>
|
|
|
|
<td className="px-2 py-4">
|
|
|
|
<td className="px-2 py-4 text-right">
|
|
|
|
{info.static_power_fact_onshore_mw.toFixed(1).replace(".", ",")}
|
|
|
|
{info.static_power_fact_onshore_mw.toFixed(1).replace(".", ",")}
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
@ -241,7 +241,7 @@ export default function Countries({ mapOptions, onMapOptionClick }) {
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
Офшорные ветроэлектростанции
|
|
|
|
Офшорные ветроэлектростанции
|
|
|
|
</th>
|
|
|
|
</th>
|
|
|
|
<td className="px-2 py-4">
|
|
|
|
<td className="px-2 py-4 text-right">
|
|
|
|
{info.static_power_fact_offshore_mw.toFixed(1).replace(".", ",")}
|
|
|
|
{info.static_power_fact_offshore_mw.toFixed(1).replace(".", ",")}
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
@ -251,7 +251,7 @@ export default function Countries({ mapOptions, onMapOptionClick }) {
|
|
|
|
<th scope="row" className="px-2 py-4 font-medium text-gray-900 dark:text-white uppercase">
|
|
|
|
<th scope="row" className="px-2 py-4 font-medium text-gray-900 dark:text-white uppercase">
|
|
|
|
Всего ВИЭ <span className="font-normal normal-case">(включая СЭС, ВЭС, ГЭС, БиоЭС, ГеоЭС)</span>
|
|
|
|
Всего ВИЭ <span className="font-normal normal-case">(включая СЭС, ВЭС, ГЭС, БиоЭС, ГеоЭС)</span>
|
|
|
|
</th>
|
|
|
|
</th>
|
|
|
|
<td className="px-2 py-4">
|
|
|
|
<td className="px-2 py-4 text-right">
|
|
|
|
{info.static_power_fact_res_mw.toFixed(1).replace(".", ",")}
|
|
|
|
{info.static_power_fact_res_mw.toFixed(1).replace(".", ",")}
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
@ -261,7 +261,7 @@ export default function Countries({ mapOptions, onMapOptionClick }) {
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
Доля всей ВИЭ-генерации в балансе мощности страны, %
|
|
|
|
Доля всей ВИЭ-генерации в балансе мощности страны, %
|
|
|
|
</th>
|
|
|
|
</th>
|
|
|
|
<td className="px-2 py-4">
|
|
|
|
<td className="px-2 py-4 text-right">
|
|
|
|
{info.static_res_share_power.toFixed(1).replace(".", ",")}
|
|
|
|
{info.static_res_share_power.toFixed(1).replace(".", ",")}
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
@ -271,7 +271,7 @@ export default function Countries({ mapOptions, onMapOptionClick }) {
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
<th scope="row" className="px-2 py-4 font-normal text-gray-900 dark:text-white">
|
|
|
|
Доля СЭС и ВЭС в балансе мощности страны, %
|
|
|
|
Доля СЭС и ВЭС в балансе мощности страны, %
|
|
|
|
</th>
|
|
|
|
</th>
|
|
|
|
<td className="px-2 py-4">
|
|
|
|
<td className="px-2 py-4 text-right">
|
|
|
|
{info.static_solar_wind_share_power.toFixed(1).replace(".", ",")}
|
|
|
|
{info.static_solar_wind_share_power.toFixed(1).replace(".", ",")}
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
|