Путь до файла в списке элементов
Добрый день.
На странице "ВыводЕдиницыИнформационнойСистемы" есть кусок xsl
<a href="{/informationsystem/informationsystem_item/dir}{file}">СКАЧАТЬ</a>
который указывает на файл в приложении (/upload/information_system_15/2/8/9/item_289/information_items_property_161.jpg) к примеру
Как можно получить(достать) параметр имя файла {file} на страницу списка элементов?
{dir} получается достать применив
<xsl:value-of select="informationsystem/informationsystem_item" />
но {file} не достаётся.
<!-- Шаблон вывода информационного элемента -->
<xsl:template match="informationsystem_item">
<div class="screen_item">
<div class="screen_table_item">
<div class="image_row">
<div class="image_cell">
<!-- Изображение для информационного элемента (если есть) -->
<xsl:if test="image_small!=''">
<a href="{url}" target="_blank" >
<img src="{dir}{image_small}" alt="" align="left"/>
</a>
<br />
<!--Танец с бубном -->
<xsl:value-of select="informationsystem/informationsystem_item" />
<a href="{dir}{file}">СКАЧАТЬ</a>
</xsl:if>
</div>
</div>
<div class="description_row">
<div class="description_sell">
<a href="{url}" hostcms:id="{@id}" hostcms:field="name" hostcms:entity="informationsystem_item">
<xsl:value-of disable-output-escaping="yes" select="name"/>
</a>
</div>
</div>
</div>
</div>
<xsl:if test="position() mod 3 = 0 and position() != last()">
<span class="screen_row"></span>
</xsl:if>
</xsl:template>
На странице "ВыводЕдиницыИнформационнойСистемы" есть кусок xsl
<a href="{/informationsystem/informationsystem_item/dir}{file}">СКАЧАТЬ</a>
который указывает на файл в приложении (/upload/information_system_15/2/8/9/item_289/information_items_property_161.jpg) к примеру
Как можно получить(достать) параметр имя файла {file} на страницу списка элементов?
{dir} получается достать применив
<xsl:value-of select="informationsystem/informationsystem_item" />
но {file} не достаётся.
<!-- Шаблон вывода информационного элемента -->
<xsl:template match="informationsystem_item">
<div class="screen_item">
<div class="screen_table_item">
<div class="image_row">
<div class="image_cell">
<!-- Изображение для информационного элемента (если есть) -->
<xsl:if test="image_small!=''">
<a href="{url}" target="_blank" >
<img src="{dir}{image_small}" alt="" align="left"/>
</a>
<br />
<!--Танец с бубном -->
<xsl:value-of select="informationsystem/informationsystem_item" />
<a href="{dir}{file}">СКАЧАТЬ</a>
</xsl:if>
</div>
</div>
<div class="description_row">
<div class="description_sell">
<a href="{url}" hostcms:id="{@id}" hostcms:field="name" hostcms:entity="informationsystem_item">
<xsl:value-of disable-output-escaping="yes" select="name"/>
</a>
</div>
</div>
</div>
</div>
<xsl:if test="position() mod 3 = 0 and position() != last()">
<span class="screen_row"></span>
</xsl:if>
</xsl:template>
после строки
<!--Танец с бубном -->
вставьте
XML-тег - это xml-тег вашего доп. свойства с файлом
и видимо это нужно вынести за пределы
<!--Танец с бубном -->
вставьте
<a href="{dir}{property_value[tag_name='XML-тег']/file}">СКАЧАТЬ</a>
XML-тег - это xml-тег вашего доп. свойства с файлом
и видимо это нужно вынести за пределы
<xsl:if test="image_small!=''"></xsl:if>
, иначе не будет выводить если нет маленькой картинки{property_value[tag_name='XML-тег']/file}
Про условие, так и должно быть, спасибо.
property_value[file]/file
Спасибо большое.
Добрый день!
Может кто-нибудь знает как вывезти в XSL-шаблоне изображение элемента списка.
Уточню:
есть дополнительное свойство товара интернет-магазина;
дополнительное свойство выбирается через список, элементом списка;
у этого элемента есть значение – малое изображение.
Вот это “малое изображение” и нужно вывезти в XSL-шаблоне.
Я и так:
я и сяк:
и по другому:
– ничего не получается… хотя ALT выводится правильно.
Может кто-нибудь знает как вывезти в XSL-шаблоне изображение элемента списка.
Уточню:
есть дополнительное свойство товара интернет-магазина;
дополнительное свойство выбирается через список, элементом списка;
у этого элемента есть значение – малое изображение.
Вот это “малое изображение” и нужно вывезти в XSL-шаблоне.
Я и так:
<img class="img-fluid" src="{dir}{/shop/shop_item_properties//property[@id = 411]/image_small}" alt="{property_value[property_id = 411]/value}" />
я и сяк:
<img class="img-fluid" src="{dir}{image_small}" alt="{property_value[property_id = 411]/value}" />
и по другому:
<img class="img-fluid" src="{dir}{/property_value[property_id = 411]/image_small}" alt="{property_value[property_id = 411]/value}" />
– ничего не получается… хотя ALT выводится правильно.
Dmitry K.,
1. не нужно писать XSL на угад и так и сяк, это не подход программиста. Если работаете со значениями, то откуда берется property в вашем XSL, оно НЕ значение, так неправильно: property[@id = 411]/image_small
2. Зависит от того, в каком месте вы это выводите, отсюда будут зависеть используемые пути.
Покажите фрагмент XML с property_value, в котором выводится требуемый тег и его значение.
1. не нужно писать XSL на угад и так и сяк, это не подход программиста. Если работаете со значениями, то откуда берется property в вашем XSL, оно НЕ значение, так неправильно: property[@id = 411]/image_small
2. Зависит от того, в каком месте вы это выводите, отсюда будут зависеть используемые пути.
Покажите фрагмент XML с property_value, в котором выводится требуемый тег и его значение.
<xsl:if test="/shop/shop_item/property_value[property_id = 411]/value != 0">
<p class="text-start lh-sm mb-2">
<a class="alert-link" href="/articles/status-iucn/">
<xsl:value-of select="/shop/shop_item_properties//property[@id = 411]/name" />
</a><xsl:text>: </xsl:text><br />
<span class="font-family-narrow" data-name="{name} - {//property[@id = 411]/name}">
<xsl:value-of select="property_value[property_id = 411]/value" />
</span>
</p>
<!--
<img class="img-fluid" src="{dir}{/shop/shop_item_properties//property[@id = 411]/image_small}" alt="{property_value[property_id = 411]/value}" />
<img class="img-fluid" src="{dir}{image_small}" alt="{property_value[property_id = 411]/value}" />
<img class="img-fluid" src="{dir}{/property_value[property_id = 411]/image_small}" alt="{property_value[property_id = 411]/value}" />
-->
</xsl:if>
<p class="text-start lh-sm mb-2">
<a class="alert-link" href="/articles/status-iucn/">
<xsl:value-of select="/shop/shop_item_properties//property[@id = 411]/name" />
</a><xsl:text>: </xsl:text><br />
<span class="font-family-narrow" data-name="{name} - {//property[@id = 411]/name}">
<xsl:value-of select="property_value[property_id = 411]/value" />
</span>
</p>
<!--
<img class="img-fluid" src="{dir}{/shop/shop_item_properties//property[@id = 411]/image_small}" alt="{property_value[property_id = 411]/value}" />
<img class="img-fluid" src="{dir}{image_small}" alt="{property_value[property_id = 411]/value}" />
<img class="img-fluid" src="{dir}{/property_value[property_id = 411]/image_small}" alt="{property_value[property_id = 411]/value}" />
-->
</xsl:if>
Это XSL. Речь шла об XML
Вы только что начали читать предложение, чтение которого вы уже заканчиваете.
<shop id="37">
<shop_dir_id>0</shop_dir_id>
<shop_company_id>3</shop_company_id>
<site_id>9</site_id>
<name>Виды древесины</name>
<description></description>
<structure_id>486</structure_id>
<producer_structure_id>0</producer_structure_id>
<shop_country_id>0</shop_country_id>
<shop_currency_id>1</shop_currency_id>
<shop_tax_id>0</shop_tax_id>
<shop_codetype_id>0</shop_codetype_id>
<shop_measure_id>2</shop_measure_id>
<default_shop_measure_id>30</default_shop_measure_id>
<email>kamardindg@yandex.ru</email>
<items_on_page>999</items_on_page>
<url_type>1</url_type>
<reserve>0</reserve>
<comment_active>0</comment_active>
<format_date>%d-%m-%Y</format_date>
<format_datetime>%d-%m-%Y %H:%M:%S</format_datetime>
<write_off_paid_items>0</write_off_paid_items>
<attach_digital_items>0</attach_digital_items>
<use_captcha>0</use_captcha>
<reserve_hours>0.00</reserve_hours>
<max_bonus>0</max_bonus>
<adult>0</adult>
<cpa>0</cpa>
<issue_discountcard>0</issue_discountcard>
<discountcard_template>{this.id}</discountcard_template>
<invoice_template>{this.id}</invoice_template>
<filter_mode>0</filter_mode>
<certificate_template>GIFT-{coupon_id}{generateChars(7)}</certificate_template>
<certificate_subject></certificate_subject>
<certificate_text></certificate_text>
<http>//wood-base.ru</http>
<url>/data/</url>
<producer_url>//</producer_url>
<captcha_id>0</captcha_id>
<items_count>71</items_count>
<items_total_count>71</items_total_count>
<subgroups_count>0</subgroups_count>
<subgroups_total_count>0</subgroups_total_count>
<group>0</group>
<page>0</page>
<limit>999</limit>
<shop_item_properties>
<property id="367">
<property_dir_id>0</property_dir_id>
<name>Род</name>
<description></description>
<type>1</type>
<default_value></default_value>
<tag_name>genus</tag_name>
<sorting>1</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>1</obligatory>
<prefix></prefix>
<filter>1</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="368">
<property_dir_id>0</property_dir_id>
<name>Вид</name>
<description></description>
<type>1</type>
<default_value></default_value>
<tag_name>species</tag_name>
<sorting>2</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>1</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="369">
<property_dir_id>0</property_dir_id>
<name>Другие названия</name>
<description></description>
<type>1</type>
<default_value></default_value>
<tag_name>common-names</tag_name>
<sorting>3</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="370">
<property_dir_id>0</property_dir_id>
<name>Плотность</name>
<description></description>
<type>0</type>
<default_value></default_value>
<tag_name>density</tag_name>
<sorting>4</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="30">
<name>кг/м³</name>
<description>килограмм на метр кубический</description>
<okei>0</okei>
</shop_measure>
<min>150</min>
<max>1270</max>
</property>
<property id="371">
<property_dir_id>0</property_dir_id>
<name>Твёрдость Янка</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>janka-hardness</tag_name>
<sorting>5</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="31">
<name>кН</name>
<description>килоньютон (kilonewton - kN)</description>
<okei>0</okei>
</shop_measure>
<min>0</min>
<max>20</max>
</property>
<property id="372">
<property_dir_id>0</property_dir_id>
<name>Предел прочности при изгибе</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>modul-rupture</tag_name>
<sorting>6</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="32">
<name>МПа</name>
<description>мегапаскаль (megapascal - MPa)</description>
<okei>0</okei>
</shop_measure>
<min>19</min>
<max>214</max>
</property>
<property id="373">
<property_dir_id>0</property_dir_id>
<name>Модуль упругости при изгибе</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>modul-elastic</tag_name>
<sorting>7</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="33">
<name>ГПа</name>
<description>гигапаскаль (gigapascal - GPa)</description>
<okei>0</okei>
</shop_measure>
<min>3</min>
<max>22</max>
</property>
<property id="374">
<property_dir_id>0</property_dir_id>
<name>Предел прочности при сжатии вдоль волокон</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>crushing-strength</tag_name>
<sorting>8</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="32">
<name>МПа</name>
<description>мегапаскаль (megapascal - MPa)</description>
<okei>0</okei>
</shop_measure>
<min>11</min>
<max>99</max>
</property>
<property id="375">
<property_dir_id>0</property_dir_id>
<name>Усушка радиальная</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>shrinkage-rad</tag_name>
<sorting>9</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="34">
<name>%</name>
<description>проценты</description>
<okei>0</okei>
</shop_measure>
<min>2</min>
<max>8</max>
</property>
<property id="376">
<property_dir_id>0</property_dir_id>
<name>Усушка тангенциальная</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>shrinkage-tan</tag_name>
<sorting>10</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="34">
<name>%</name>
<description>проценты</description>
<okei>0</okei>
</shop_measure>
<min>4</min>
<max>12</max>
</property>
<property id="377">
<property_dir_id>0</property_dir_id>
<name>Усушка объёмная</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>shrinkage-vol</tag_name>
<sorting>11</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="34">
<name>%</name>
<description>проценты</description>
<okei>0</okei>
</shop_measure>
<min>7</min>
<max>19</max>
</property>
<property id="384">
<property_dir_id>0</property_dir_id>
<name>Типы деревьев</name>
<description></description>
<type>3</type>
<default_value>1222</default_value>
<tag_name>wood-type</tag_name>
<sorting>12</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>1</obligatory>
<prefix></prefix>
<filter>4</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<filter_counts>
<count id="1221">2</count>
<count id="1222">69</count>
</filter_counts>
<list id="269">
<list_dir_id>0</list_dir_id>
<name>Типы деревьев</name>
<description>Wood type:
1. Хвойные
2. Лиственные
3. Другое</description>
<url_type>1</url_type>
<change_filename>0</change_filename>
<image_small_max_width>100</image_small_max_width>
<image_small_max_height>100</image_small_max_height>
<image_large_max_width>800</image_large_max_width>
<image_large_max_height>800</image_large_max_height>
<preserve_aspect_ratio>1</preserve_aspect_ratio>
<preserve_aspect_ratio_small>1</preserve_aspect_ratio_small>
<create_small_image>1</create_small_image>
<site_id>9</site_id>
<list_item id="1221">
<list_id>269</list_id>
<parent_id>0</parent_id>
<value>Хвойные</value>
<path>conifer</path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon>fa-solid fa-tree</icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1222">
<list_id>269</list_id>
<parent_id>0</parent_id>
<value>Лиственные</value>
<path>deciduous</path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon>fa-solid fa-leaf</icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1223">
<list_id>269</list_id>
<parent_id>0</parent_id>
<value>Другие</value>
<path>other</path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon>fa-solid fa-wheat-awn</icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
</list>
</property>
<property id="378">
<property_dir_id>0</property_dir_id>
<name>Распространение</name>
<description></description>
<type>1</type>
<default_value></default_value>
<tag_name>distribution</tag_name>
<sorting>13</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="379">
<property_dir_id>0</property_dir_id>
<name>Произрастание (регион)</name>
<description></description>
<type>3</type>
<default_value></default_value>
<tag_name>areal</tag_name>
<sorting>14</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>1</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>7</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<filter_counts>
<count id="1167">6</count>
<count id="1168">1</count>
<count id="1171">14</count>
<count id="1173">4</count>
<count id="1174">1</count>
<count id="1175">3</count>
<count id="1176">5</count>
<count id="1177">8</count>
<count id="1178">9</count>
<count id="1179">8</count>
<count id="1181">7</count>
<count id="1182">7</count>
<count id="1183">4</count>
<count id="1184">13</count>
<count id="1185">13</count>
<count id="1186">8</count>
<count id="1187">5</count>
<count id="1188">20</count>
<count id="1189">10</count>
<count id="1190">5</count>
<count id="1191">9</count>
<count id="1192">1</count>
</filter_counts>
<list id="267">
<list_dir_id>0</list_dir_id>
<name>Макрорегионы мира</name>
<description></description>
<url_type>1</url_type>
<change_filename>0</change_filename>
<image_small_max_width>0</image_small_max_width>
<image_small_max_height>0</image_small_max_height>
<image_large_max_width>0</image_large_max_width>
<image_large_max_height>0</image_large_max_height>
<preserve_aspect_ratio>1</preserve_aspect_ratio>
<preserve_aspect_ratio_small>1</preserve_aspect_ratio_small>
<create_small_image>1</create_small_image>
<site_id>9</site_id>
<list_item id="1167">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Европа</value>
<path>europe</path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
<list_item id="1173">
<list_id>267</list_id>
<parent_id>1167</parent_id>
<value>Западная Европа</value>
<path></path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1174">
<list_id>267</list_id>
<parent_id>1167</parent_id>
<value>Северная Европа</value>
<path></path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1175">
<list_id>267</list_id>
<parent_id>1167</parent_id>
<value>Южная Европа</value>
<path></path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1176">
<list_id>267</list_id>
<parent_id>1167</parent_id>
<value>Восточная Европа и Россия</value>
<path></path>
<sorting>4</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</list_item>
<list_item id="1168">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Азия</value>
<path>asia</path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
<list_item id="1177">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Западная Азия</value>
<path></path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1178">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Центральная Азия</value>
<path></path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1179">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Южная Азия</value>
<path></path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1180">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Северная Азия</value>
<path></path>
<sorting>4</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1181">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Восточная Азия</value>
<path></path>
<sorting>5</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1182">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Юго-Восточная Азия</value>
<path></path>
<sorting>6</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</list_item>
<list_item id="1169">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Африка</value>
<path>africa</path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
<list_item id="1183">
<list_id>267</list_id>
<parent_id>1169</parent_id>
<value>Северная Африка</value>
<path></path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1184">
<list_id>267</list_id>
<parent_id>1169</parent_id>
<value>Западная Африка</value>
<path></path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1185">
<list_id>267</list_id>
<parent_id>1169</parent_id>
<value>Центральная Африка</value>
<path></path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1186">
<list_id>267</list_id>
<parent_id>1169</parent_id>
<value>Восточная Африка</value>
<path></path>
<sorting>4</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1187">
<list_id>267</list_id>
<parent_id>1169</parent_id>
<value>Южная Африка</value>
<path></path>
<sorting>5</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</list_item>
<list_item id="1170">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Америка</value>
<path>america</path>
<sorting>4</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
<list_item id="1188">
<list_id>267</list_id>
<parent_id>1170</parent_id>
<value>Северная Америка</value>
<path></path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1189">
<list_id>267</list_id>
<parent_id>1170</parent_id>
<value>Центральная Америка</value>
<path></path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1190">
<list_id>267</list_id>
<parent_id>1170</parent_id>
<value>Карибский бассейн</value>
<path></path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1171">
<list_id>267</list_id>
<parent_id>1170</parent_id>
<value>Южная Америка</value>
<path></path>
<sorting>4</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</list_item>
<list_item id="1172">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Австралия и Океания</value>
<path>australia</path>
<sorting>5</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
<list_item id="1191">
<list_id>267</list_id>
<parent_id>1172</parent_id>
<value>Австралия и Новая Зеландия</value>
<path></path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1192">
<list_id>267</list_id>
<parent_id>1172</parent_id>
<value>Океания (Меланезия, Микронезия, Полинезия)</value>
<path></path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</list_item>
</list>
</property>
<property id="385">
<property_dir_id>0</property_dir_id>
<name>Устойчивость к гниению</name>
<description></description>
<type>3</type>
<default_value></default_value>
<tag_name>rot-resistance</tag_name>
<sorting>15</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>1</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>7</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<filter_counts>
<count id="0">10</count>
<count id="1224">26</count>
<count id="1225">8</count>
<count id="1226">18</count>
<count id="1227">22</count>
<count id="1228">10</count>
</filter_counts>
<list id="270">
<list_dir_id>0</list_dir_id>
<name>Устойчивость к гниению</name>
<description>Устойчивость древесины к гниению -- Rot Resistance</description>
<url_type>1</url_type>
<change_filename>0</change_filename>
<image_small_max_width>100</image_small_max_width>
<image_small_max_height>100</image_small_max_height>
<image_large_max_width>800</image_large_max_width>
<image_large_max_height>800</image_large_max_height>
<preserve_aspect_ratio>1</preserve_aspect_ratio>
<preserve_aspect_ratio_small>1</preserve_aspect_ratio_small>
<create_small_image>1</create_small_image>
<site_id>9</site_id>
<list_item id="1224">
<list_id>270</list_id>
<parent_id>0</parent_id>
<value>Очень долговечная</value>
<path>very-durable</path>
<sorting>1</sorting>
<description>Очень долговечная / Very durable</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1225">
<list_id>270</list_id>
<parent_id>0</parent_id>
<value>Долговечная</value>
<path>durable</path>
<sorting>2</sorting>
<description>Долговечная / Durable</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1226">
<list_id>270</list_id>
<parent_id>0</parent_id>
<value>Средняя</value>
<path>moderately-durable</path>
<sorting>3</sorting>
<description>Умеренно долговечная / Moderately durable</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1227">
<list_id>270</list_id>
<parent_id>0</parent_id>
<value>Недолговечная</value>
<path>non-durable</path>
<sorting>4</sorting>
<description>Недолговечная / Non-durable</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1228">
<list_id>270</list_id>
<parent_id>0</parent_id>
<value>Скоропортящаяся</value>
<path>perishable</path>
<sorting>5</sorting>
<description>Скоропортящаяся / Perishable</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
</list>
</property>
<property id="411">
<property_dir_id>0</property_dir_id>
<name>Статус МСОП</name>
<description><p>Статус присваивается <dfn title="Международный союз охраны природы и природных ресурсов (англ. International Union for Conservation of Nature and Natural Resources, IUCN) – международная некоммерческая организация, основанная в 1948 г.">МСОП</dfn> на основании степени угроз биологическим видам или инфравидовым (внутривидовым) таксонам. <b>Международный союз охраны природы и природных ресурсов</b>, <b>МСОП</b> (англ. <i>International Union for Conservation of Nature and Natural Resources</i>, <i>IUCN</i>) – международная некоммерческая организация, основанная в 1948 году. Занимается освещением проблем сохранения биоразнообразия планеты; представляет новости, конгрессы, проходящие в разных странах, списки видов, нуждающихся в особой охране в разных регионах планеты.</p></description>
<type>3</type>
<default_value></default_value>
<tag_name>status-iucn</tag_name>
<sorting>16</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>4</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<filter_counts>
<count id="1271">1</count>
<count id="1272">1</count>
</filter_counts>
<list id="280">
<list_dir_id>0</list_dir_id>
<name>Статус МСОП</name>
<description>Устойчивость развития (возобновляемость)</description>
<url_type>1</url_type>
<change_filename>0</change_filename>
<image_small_max_width>480</image_small_max_width>
<image_small_max_height>360</image_small_max_height>
<image_large_max_width>1920</image_large_max_width>
<image_large_max_height>1440</image_large_max_height>
<preserve_aspect_ratio>1</preserve_aspect_ratio>
<preserve_aspect_ratio_small>1</preserve_aspect_ratio_small>
<create_small_image>1</create_small_image>
<site_id>9</site_id>
<list_item id="1267">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>EX – Extinct (исчезнувшие)</value>
<path>ex-extinct-ischeznuvshie</path>
<sorting>1</sorting>
<description>EX – Extinct (исчезнувшие)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-1-EX-b.png</image_large>
<image_small>small_status-iucn-1-EX-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/6/item_1267/</dir>
</list_item>
<list_item id="1268">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>EW – Extinct in the Wild (исчезнувшие в дикой природе)</value>
<path>ew-extinct-in-the-wild-ischeznuvshie-v-dikoj-prirode</path>
<sorting>2</sorting>
<description>EW – Extinct in the Wild (исчезнувшие в дикой природе)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-2-EW-b.png</image_large>
<image_small>small_status-iucn-2-EW-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/6/item_1268/</dir>
</list_item>
<list_item id="1269">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>CR – Critically Endangered (в критической опасности)</value>
<path>cr-critically-endangered-v-kriticheskoj-opasnosti</path>
<sorting>3</sorting>
<description>CR – Critically Endangered (в критической опасности)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-3-CR-b.png</image_large>
<image_small>small_status-iucn-3-CR-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/6/item_1269/</dir>
</list_item>
<list_item id="1270">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>EN – Endangered (в опасности)</value>
<path>en-endangered-v-opasnosti</path>
<sorting>4</sorting>
<description>EN – Endangered (в опасности)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-4-EN-b.png</image_large>
<image_small>small_status-iucn-4-EN-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/7/item_1270/</dir>
</list_item>
<list_item id="1271">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>VU – Vulnerable (в уязвимом положении)</value>
<path>vu-vulnerable-v-uyazvimom-polozhenii</path>
<sorting>5</sorting>
<description>VU – Vulnerable (в уязвимом положении)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-5-VU-b.png</image_large>
<image_small>small_status-iucn-5-VU-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/7/item_1271/</dir>
</list_item>
<list_item id="1272">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>NT – Near Threatened (близки к уязвимому положению)</value>
<path>nt-near-threatened-blizki-k-uyazvimomu-polozheniyu</path>
<sorting>6</sorting>
<description>NT – Near Threatened (близки к уязвимому положению)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-6-NT-b.png</image_large>
<image_small>small_status-iucn-6-NT-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/7/item_1272/</dir>
</list_item>
<list_item id="1273">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>LC – Least Concern (находятся под наименьшей угрозой)</value>
<path>lc-least-concern-naxodyatsya-pod-naimenshej-ugrozoj</path>
<sorting>7</sorting>
<description>LC – Least Concern (находятся под наименьшей угрозой)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-7-LC-b.png</image_large>
<image_small>small_status-iucn-7-LC-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/7/item_1273/</dir>
</list_item>
<list_item id="1274">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>DD – Data Deficient (данных недостаточно)</value>
<path>dd-data-deficient-dannyx-nedostatochno</path>
<sorting>8</sorting>
<description>DD – Data Deficient (данных недостаточно)</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1275">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>NE – Not Evaluated (угроза не оценивается)</value>
<path>ne-not-evaluated-ugroza-ne-oczenivaetsya</path>
<sorting>9</sorting>
<description>NE – Not Evaluated (угроза не оценивается)</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
</list>
</property>
<property id="380">
<property_dir_id>0</property_dir_id>
<name>Верхний колонтитул таблицы с фото древесины</name>
<description><p class="card-header">Образцы досок <b class="color-dark-blue">Павловнии войлочной</b> (<i class="color-dark-blue">Paulownia tomentosa</i>):<br>1, 2 – обе стороны доски; 3 – торец доски; 4, 5 – торец доски (волокна древесины увеличены); 5 – отшлифовано P220…240 (англ. <b>ONE INCH</b> – один дюйм = 2,54 см)</p></description>
<type>6</type>
<default_value></default_value>
<tag_name>heading-timber</tag_name>
<sorting>17</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="381">
<property_dir_id>0</property_dir_id>
<name>Фото - древесина</name>
<description></description>
<type>2</type>
<default_value></default_value>
<tag_name>foto-timber</tag_name>
<sorting>18</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>1</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="382">
<property_dir_id>0</property_dir_id>
<name>Фото - галерея 1</name>
<description></description>
<type>2</type>
<default_value></default_value>
<tag_name>foto</tag_name>
<sorting>19</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>1</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="383">
<property_dir_id>0</property_dir_id>
<name>Фото - галерея 2</name>
<description></description>
<type>2</type>
<default_value></default_value>
<tag_name>foto-img-block</tag_name>
<sorting>20</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>1</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
</shop_item_properties>
<comment_properties></comment_properties>
<shop_item id="782">
<shortcut_id>0</shortcut_id>
<shop_tax_id>0</shop_tax_id>
<shop_seller_id>0</shop_seller_id>
<shop_group_id>0</shop_group_id>
<shop_currency_id>1</shop_currency_id>
<shop_id>37</shop_id>
<shop_producer_id>0</shop_producer_id>
<shop_measure_id>30</shop_measure_id>
<shop_item_type_id>1</shop_item_type_id>
<type>0</type>
<name>Билинга</name>
<marking></marking>
<vendorcode></vendorcode>
<description></description>
<text><div class="card-kd col-sm-5 col-md-4 col-lg-3 col-xxl-2 float-end ms-sm-4 mb-3" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<div class="card-kd-header alert-success"><span itemprop="name">Билинга</span><br><i class="color-dark-blue" itemprop="alternateName">Nauclea diderrichii</i></div>
<div class="row row-cols-2 row-cols-sm-1 p-1 gx-1">
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-01.jpg" data-fancybox="gallery" data-caption="Nauclea diderrichii" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-01s.jpg" alt="Nauclea diderrichii"></a>
<figcaption itemprop="caption" class="visually-hidden">Nauclea diderrichii</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-02.jpg" data-fancybox="gallery" data-caption="Nauclea diderrichii" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-02s.jpg" alt="Nauclea diderrichii"></a>
<figcaption itemprop="caption" class="visually-hidden">Nauclea diderrichii</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-03.jpg" data-fancybox="gallery" data-caption="Nauclea diderrichii" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-03s.jpg" alt="Nauclea diderrichii"></a>
<figcaption itemprop="caption" class="visually-hidden">Nauclea diderrichii</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-05.jpg" data-fancybox="gallery" data-caption="Nauclea diderrichii" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-05s.jpg" alt="Nauclea diderrichii"></a>
<figcaption itemprop="caption" class="visually-hidden">Nauclea diderrichii</figcaption>
</figure>
<figure class="col-8"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-04.jpg" data-fancybox="gallery" data-caption="Nauclea diderrichii" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-04s.jpg" alt="Nauclea diderrichii"></a>
<figcaption itemprop="caption" class="visually-hidden">Nauclea diderrichii</figcaption>
</figure>
<figure class="col-4"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-07.jpg" data-fancybox="gallery" data-caption="Листья" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-07s.jpg" alt="Листья Nauclea diderrichii"></a>
<figcaption itemprop="caption">Листья</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-06.jpg" data-fancybox="gallery" data-caption="Цветы" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-06s.jpg" alt="Цветы Nauclea diderrichii"></a>
<figcaption itemprop="caption">Цветы</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-08.jpg" data-fancybox="gallery" data-caption="Зрелые плоды" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-08s.jpg" alt="Зрелые плоды Nauclea diderrichii"></a>
<figcaption itemprop="caption">Зрелые плоды</figcaption>
</figure>
</div>
</div>
<p><strong>Науклея Дидерриха</strong> (лат. <em>Nauclea diderrichii</em>) – вид крупных тропических деревьев семейства Мареновые (<i>Rubiaceae</i>), произрастающих в тропических лесах Западной и Центральной Африки. Дерево имеет различные местные названия (наиболее распространнённые из них): <b class="color-dark-blue">Билинга</b> (англ. <i>Bilinga</i>), <b class="color-dark-blue">Бади</b> (англ. <i>Badi</i>), <b class="color-dark-blue">Опепе</b> (англ. <i>Opepe</i>), <b class="color-dark-blue">Алома</b> (англ. <i>Aloma</i>), <b class="color-dark-blue">Кусия</b> (англ. <i>Kusia</i>).</p>
<div class="accordion d-grid mb-3">
<div class="accordion-item"><button class="accordion-button collapsed fw-bold fs-5" type="button" data-bs-toggle="collapse" data-bs-target="#names" aria-expanded="false" aria-controls="names">Основные местные названия</button>
<div id="names" class="accordion-collapse collapse" aria-labelledby="Основные местные названия">
<div class="accordion-body p-2">
<div class="table-responsive">
<table class="table table-borderless table-xs table-hover table_sort mb-0">
<thead>
<tr class="border-bottom">
<th class="fw-bold">№</th>
<th class="fw-bold col_sort">Название</th>
<th class="fw-bold col_sort">Название (англ.)</th>
<th class="fw-bold col_sort">Страна</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Билинга</td>
<td>Bilinga</td>
<td>Габон</td>
</tr>
<tr>
<td>2</td>
<td>Бади</td>
<td>Badi</td>
<td>Кот-д’Ивуар</td>
</tr>
<tr>
<td>3</td>
<td>Опепе</td>
<td>Opepe</td>
<td>Бенин, Нигерия, Великобритания</td>
</tr>
<tr>
<td>4</td>
<td>Энголо</td>
<td>Engolo</td>
<td>Ангола</td>
</tr>
<tr>
<td>5</td>
<td>Кусия</td>
<td>Kusia</td>
<td>Гана, Либерия</td>
</tr>
<tr>
<td>6</td>
<td>Алома</td>
<td>Aloma</td>
<td>Экваториальная Гвинея, Германия</td>
</tr>
<tr>
<td>7</td>
<td>Акондок</td>
<td>Akondoc, Akondok</td>
<td>Камерун</td>
</tr>
<tr>
<td>8</td>
<td>Килинги</td>
<td>Kilingi</td>
<td>Уганда</td>
</tr>
<tr>
<td>9</td>
<td>Бандюй</td>
<td>Bundui</td>
<td>Сьерра-Леоне</td>
</tr>
<tr>
<td>10</td>
<td>Килу</td>
<td>Kilu</td>
<td>Центральноафриканская Республика</td>
</tr>
<tr>
<td>11</td>
<td>Н'гулу-маза</td>
<td>N’gulu-maza</td>
<td>Конго, ДР Конго</td>
</tr>
<tr>
<td>12</td>
<td>Линзи</td>
<td>Linzi</td>
<td>Конго</td>
</tr>
<tr>
<td>13</td>
<td>Мокессе</td>
<td>Mokesse</td>
<td>Конго</td>
</tr>
<tr>
<td>14</td>
<td>Бонкингу, Бонкангу</td>
<td>Bonkingu, Bonkngu</td>
<td>ДР Конго</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="accordion d-inline d-sm-grid mb-3">
<div class="accordion-item"><button class="accordion-button d-grid d-lg-flex collapsed fw-bold fs-5" type="button" data-bs-toggle="collapse" data-bs-target="#synonyms" aria-expanded="false" aria-controls="synonyms"> <span class="col-auto">Синонимы <i class="color-dark-blue mx-sm-2">Nauclea diderrichii</i></span> <small class="col-lg fs-6 fw-normal text-muted ps-lg-3">(Laurent) Merr., J. Washington Acad. Sci. 5: 535 (1915)</small> </button>
<div id="synonyms" class="accordion-collapse collapse" aria-labelledby="Синонимы Nauclea diderrichii">
<div class="accordion-body">
<h6 class="fw-bold">Гомотипные синонимы:</h6>
<ul>
<li><i class="color-dark-blue">Sarcocephalus diderrichii</i> – <small class="text-muted">Laurent in T.Masui, Etat. Indep. Congo Expos. Brux. 1897: 439 (1897)</small></li>
</ul>
<h6 class="fw-bold mt-3">Гетеротипные синонимы:</h6>
<ul>
<li><i class="color-dark-blue">Nauclea trillesii</i> – <small class="text-muted">Merr. in J. Washington Acad. Sci. 5: 537 (1915), <dfn title="Сокр. от лат. not validly publication – недействительная публикация">not validly publ.</dfn></small></li>
<li><i class="color-dark-blue">Sarcocephalus badi</i> – <small class="text-muted">Aubrév. in Fl. Forest. Soudano-Guin.: 475 (1950), without a Latin descr.</small></li>
<li><i class="color-dark-blue">Sarcocephalus trillesii</i> – <small class="text-muted">Pierre ex A.Chev. in Vég. Ut. Afr. Trop. Franç.: 229 (1916)</small></li>
</ul>
</div>
</div>
</div>
</div>
<h4 class="full-line">Ботаническое описание</h4>
<p>Вечнозелёное дерево крупных размеров с густой, широкой, шаровидной кроной. Обычно оно вырастает до 40 м в высоту, но в исключительных случаях может достигать 50 м. Прямой цилиндрический ствол может быть неразветвлённым на протяжении до 27 м, а диаметр на уровне груди – от 1 до 2 м.</p>
<h4 class="full-line">Распространение и среда обитания</h4>
<div class="card-kd col-7 col-sm-6 col-md-5 col-lg-4 col-xxl-3 float-start me-3 me-sm-4 mb-3" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<div class="card-kd-header alert-success" itemprop="name">Ареал <i class="color-dark-blue">Nauclea diderrichii</i></div>
<figure class="p-1"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-areal-1.png" data-fancybox="gallery" itemprop="image" data-caption="Естественный (изначальный) ареал Nauclea diderrichii на онлайн-карте растений Royal Botanic Gardens Kew, Plants of the World Online"> <img class="img-fluid mb-1" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-areal-1s.png" alt="Естественный (изначальный) ареал Nauclea diderrichii на онлайн-карте растений Royal Botanic Gardens Kew, Plants of the World Online"></a>
<figcaption class="text-start mt-1" itemprop="caption">Онлайн-карта растений Royal Botanic Gardens <dfn class="font-family-oranienbaum fst-normal fw-bold" title="Plants of the World Online – ботанический сад Кью">Kew</dfn>
<table class="table table-xs table-borderless mt-2">
<tbody>
<tr>
<td>
<div style="width: 24px; height: 24px; background-color: #5c9a45;"></div>
</td>
<td>Естественный (изначальный) ареал произрастания</td>
</tr>
</tbody>
</table>
</figcaption>
</figure>
</div>
<h6 class="fw-bold">Естественный ареал произрастания</h6>
<p>Вид произрас<wbr>та<wbr>ет в эквато<wbr>риаль<wbr>ных (субтро<wbr>пичес<wbr>ких или тропических) влажных низменных лесах Западной и Центральной Африки. Встречается на территории таких государств, как Гвинея, Сьерра-Леоне, Либерия, Кот-д’Ивуар, Гана, Бенин, Нигерия, Камерун, Центрально<wbr>африканская Республика, Габон, Конго, ДР Конго, Уганда, Ангола, Мозамбик.</p>
<h6 class="fw-bold">Среда обитания (экология)</h6>
<p>Несмотря на широкое распространение в дикой природе, вид распределён рассеяно, встречается в гуще вечнозелёных лесов, на высотах до 800 метров над уровнем моря. Этот светолюбивый вид обильно разрастается на прогалинах и полянах и часто встречается почти целыми группами в переходной зоне между пресноводным болотом и низинным лесом.</p>
<h6 class="fw-bold">Подробности и особенности произрастания</h6>
<p>Дерево, произрастающее во влажных тропических низинах, обычно встречается на высоте до 500 м над уровнем моря. Лучше всего он растёт в регионах, где среднегодовая дневная температура составляет +28…+34°C, но может выдер<wbr>живать и +22…+38°C. Растение предпо<wbr>чита<wbr>ет среднегодовое количество осадков в диапазоне от 1600 до 3500 мм, но может переносить и от 1200 до 4500 мм.</p>
<p>Требует солнечного места, даже будучи молодым деревом. Предпочитает хорошо дренированную, умеренно плодородную почву от лёгкой до средней по плотности. Плохо растёт на чрезмерно влажных почвах или на латеритных почвах, которые полностью высыхают в засушли<wbr>вый сезон. Предпочитает pH в диапазоне 5,5–6,5, допускает значения от 4,5 до 7,5.</p>
<p>Потенциальная годовая выработка древесины составляет 3–10 м³ на гектар. Побеги дерева легко укореняются.</p>
<h6 class="fw-bold">Размножение</h6>
<p>Семена не требуют предварительной обработки. Размножение лучше всего проводить в питомнике из-за небольшого размера семян. Когда сеянцам исполнится около месяца, рассадите их по отдельным горшкам. Семена могут оставаться в состоянии покоя в лесной почве. При хранении они сохраняют жизнеспособ<wbr>ность в течение как минимум года. Семена прорастают под воздейст<wbr>вием повышенного уровня освещённости. Влияние на прорастание семян, прошедших через кишечник животного, ещё предстоит изучить; однако всходы часто встречаются вдоль слоновьих троп. Размножение черенкованием – просто.</p>
<h4 class="full-line">Хозяйственное значение и применение</h4>
<h6 class="fw-bold">Пищевое применение</h6>
<p>Используется в пальмовом супе в Гане. В отчёте, скорее всего, говорится о листьях или плодах, но не уточняется, о каких именно.</p>
<h6 class="fw-bold">Лекарственное применение</h6>
<p><span class="text-primary me-3">•</span>Отвар из коры используется для лечения анемии, болей в желудке и несварения. Кору используют для приготовления настоя, который применяют при лечении гонореи, а также в составе настоя для лечения желтухи.<br><span class="text-primary me-3">•</span>Отвар из листьев используют для промывания глаз при кори.</p>
<h6 class="fw-bold">Использование в агролесомелиорации</h6>
<p>В пределах своего ареала этот вид является естественным первопроходцем при восстановлении лесного покрова и может быстро захватывать открытые территории. Он может использоваться в проектах по восстановлению лесов для возвращения им естественного вида. Иногда его выращивают как тенистое дерево или <dfn title="…или дерево-кормилица (англ. Nurse tree) – это более крупное, быстрорастущее дерево, которое укрывает меньшее, медленнорастущее дерево или растение. Дерево-нянька может обеспечить тень, укрытие от ветра и защиту от животных">дерево-“няньку”</dfn> для более ценных пород древесины, а иногда как самостоятельную полезную породу.</p>
<h4 class="full-line">Древесина</h4>
<div class="col-sm-8 col-md-6 col-lg-4 float-end ms-sm-4">
<div class="row gx-3" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<figure class="col-6"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-1.jpg" data-fancybox="gallery" data-caption="Билинга (Nauclea diderrichii) – древесина шлифованная" itemprop="image"> <img class="img-thumbnail" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-1s.jpg" alt="Билинга (Nauclea diderrichii) – древесина шлифованная"></a>
<figcaption itemprop="caption">Древесина шлифованная</figcaption>
</figure>
<figure class="col-6"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-2.jpg" data-fancybox="gallery" data-caption="Билинга (Nauclea diderrichii) – древесина под лаком" itemprop="image"> <img class="img-thumbnail" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-2s.jpg" alt="Билинга (Nauclea diderrichii) – древесина под лаком"></a>
<figcaption itemprop="caption">Древесина под лаком</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-3.jpg" data-fancybox="gallery" data-caption="Билинга (Nauclea diderrichii) – торец доски" itemprop="image"> <img class="img-thumbnail" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-3s.jpg" alt="Билинга (Nauclea diderrichii) – торец доски"></a>
<figcaption itemprop="caption">Торец доски</figcaption>
</figure>
</div>
</div>
<div class="card-kd col-lg-6 float-end p-1 ms-lg-4 mb-3 clear-both">
<div class="row g-0" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<figure class="col-4"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-4.jpg" data-fancybox="gallery" data-caption="Билинга (Nauclea diderrichii) – торец доски – волокна древесины, увел. 10х" itemprop="image"> <img class="img-fluid pe-1" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-4s.jpg" alt="Билинга (Nauclea diderrichii) – торец доски – волокна древесины, увел. 10х"></a>
<figcaption itemprop="name"><b>Билинга</b><br>(<i>Nauclea diderrichii</i>)<br>торец доски – волокна древесины, увел. 10х</figcaption>
</figure>
<div class="col font-family-narrow bg-warning bg-opacity-10 p-2 ps-3" itemprop="caption"><a class="alert-link" href="/articles/anatomy-hardwood/#1-1" target="_blank" rel="noopener">Пористость</a>: диффузно-пористая<br><a class="alert-link" href="/articles/anatomy-hardwood/#1-2" target="_blank" rel="noopener">Расположение пор</a>: исключительно одиночные, иногда в виде диагональных или радиальных узоров<br><a class="alert-link" href="/articles/anatomy-hardwood/#1-3" target="_blank" rel="noopener">Сосуды (поры)</a>: от крупных до очень крупных, от нескольких до очень небольшого количества; иногда встречаются желтоватые отложения<br><a class="alert-link" href="/articles/anatomy-hardwood/#2" target="_blank" rel="noopener">Паренхима</a>: диффузно-агрегированная<br><a class="alert-link" href="/articles/anatomy-hardwood/#3" target="_blank" rel="noopener">Лучи</a>: узкая ширина, нормальное расстояние между лучами; некоторые лучи едва видны без увеличения<br><a class="alert-link" href="/articles/fluorescence/" target="_blank" rel="noopener">Флуоресценция</a>: сердцевина древесины флуоресцирует от слабого до средне-жёлто-зелёного оттенка при ультрафиолетовом освещении в <q>чёрном свете</q></div>
</div>
</div>
<div class="col-md-8 col-lg-6 float-end ms-md-4 clear-both">
<div class="row gx-3" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<figure class="col-7"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-5.jpg" data-fancybox="gallery" data-caption="Выточено из билинги (Nauclea diderrichii)" itemprop="image"> <img class="img-thumbnail" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-5s.jpg" alt="Выточено из билинги (Nauclea diderrichii)"></a>
<figcaption itemprop="caption">Выточено из билинги</figcaption>
</figure>
<figure class="col-5"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-6.jpg" data-fancybox="gallery" data-caption="Ветряная мельница в Де-Хупе (Гардерен, провинция Гелдерланд, Нидерланды) – балки сделаны из билинги (Nauclea diderrichii). Фото от 31 мая 2007 года" itemprop="image"> <img class="img-thumbnail" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-6s.jpg" alt="Ветряная мельница в Де-Хупе (Гардерен, провинция Гелдерланд, Нидерланды) – балки сделаны из билинги (Nauclea diderrichii)"></a>
<figcaption itemprop="caption">Ветряная мельница в Де-Хупе (Нидерланды) – балки сделаны из билинги</figcaption>
</figure>
</div>
</div>
<p>Сердцевина золотисто-жёлтого, жёлто-красного или коричневого цвета, с оранжево-красными полосами; со временем темнеет. Заболонь шириной 3–5 см светло- или розовато-жёлтая и чётко отличается по цвету от сердцевины. Структура волокон часто волнистая и спутанная (свилеватая). Однородная крупная грубая текстура с хорошим естественным блеском.</p>
<p>Устойчивость к гниению оценивается от умеренной до высокой; сердцевина древесины, обладает умеренной или хорошей устойчивостью к насекомым и морским древоточцам.</p>
<h6 class="fw-bold">Технологичность (обработка)</h6>
<p>Древесина умеренно проста в обработке, но при работе с четвертными распилами (<i>quartersawn surfaces</i>) или в местах с сильно неоднородными волокнами необходимо соблюдать осторожность, чтобы избежать вырывов. Плохо гнётся. Хорошо скручивается, склеивается и отделывается. Характерного запаха нет.</p>
<h6 class="fw-bold">Монтаж</h6>
<p>Гвоздевание/свинчивание – хорошо, с предвари<wbr>тельным высверливанием; склеивание – правильное. Легкая тенденция к растрескиванию при гвоздевании. Склеивать осторожно – кислотная древесина.</p>
<h6 class="fw-bold">Применение (использование)</h6>
<p>Шпалы, грубые столярные изделия, мосты (части в контакте с водой или землей), гидротехнические сооружения (морская вода), промышленные полы, столярные изделия (мебель высокого класса), полы в транспорте и контейнерах, мебельные компоненты, шпон строганый, судостроение (обшивка и палуба), внешняя облицовка, интерьерные столярные изделия, внутренняя облицовка, мосты (части не в контакте с водой или землей), устойчивость к ряду кислот.</p>
<p>Древесина используется в судостроении и иногда заменяет дуб (за исключением случаев, когда древесину нужно согнуть, так как она плохо поддается сгибанию под воздействием пара). Золотисто-оранжевый цвет, устойчивость к древоточцам и большой выбор размеров делают эту древесину уникальным материалом для наружных работ.</p>
<p>Древесина часто используется для изготовления несущих элементов строительных конструкций, а также для других применений с повышенными требованиями к свойствам древесины, таким как покрытия причалов, пристаней, днища вагонов. Используется в кораблестроении для строительства палуб. Также применяется для изготовления паркетов, в мебельном производстве, в отделке интерьеров, для изготовления декоративных токарных изделий.</p>
<div class="note note-success d-table d-inline-block mb-3"><b class="alert-success">Устойчивость развития (возобновляемость)</b>: эта порода древесины не указана в Приложениях <dfn title="Конвенция о международной торговле видами дикой фауны и флоры, находящимися под угрозой исчезновения – Convention on International Trade in Endangered Species of Wild Fauna and Flora, CITES">СИТЕС</dfn>, но внесена в <q>Красный список видов</q>, нахо<wbr>дящихся под угрозой исчезновения <dfn title="Международный союз охраны природы и природных ресурсов – International Union for Conservation of Nature and Natural Resources, IUCN">МСОП</dfn>, который в 1996 году поместил этот вид в категорию видов, находящихся в уязвимом положении. Технически он не соответствует критериям Красного списка уязвимых или находящихся под угрозой исчезновения видов, но близок к тому, чтобы соответствовать требованиям и / или может соответствовать требованиям в ближайшем будущем. Числился уязвимым с 1998 по 2021 год, но с тех пор был понижен. Ему угрожает чрезмерная эксплуатация ради древесины и утрата среды обитания.</div></text>
<image_large>nauclea-diderrichii.jpg</image_large>
<image_small>small_nauclea-diderrichii.jpg</image_small>
<weight>0.000</weight>
<package_weight>0.000</package_weight>
<active>1</active>
<closed>0</closed>
<siteuser_group_id>-1</siteuser_group_id>
<sorting>0</sorting>
<path>bilinga</path>
<seo_title></seo_title>
<seo_description></seo_description>
<seo_keywords></seo_keywords>
<indexing>1</indexing>
<image_small_height>270</image_small_height>
<image_small_width>270</image_small_width>
<image_large_height>450</image_large_height>
<image_large_width>450</image_large_width>
<manufacturer_warranty>0</manufacturer_warranty>
<country_of_origin></country_of_origin>
<siteuser_id>0</siteuser_id>
<modification_id>0</modification_id>
<guid>0F198D19-E870-C250-4780-51E38B2507FC</guid>
<showed>162</showed>
<length>0.00</length>
<width>0.00</width>
<height>0.00</height>
<package_length>0.00</package_length>
<package_width>0.00</package_width>
<package_height>0.00</package_height>
<min_quantity>1.00</min_quantity>
<max_quantity>0.00</max_quantity>
<quantity_step>1.00</quantity_step>
<delivery>1</delivery>
<pickup>1</pickup>
<store>0</store>
<adult>0</adult>
<cpa>1</cpa>
<url>/data/bilinga/</url>
<date>23-07-2025</date>
<datetime>23-07-2025 23:40:44</datetime>
<start_datetime>0000-00-00 00:00:00</start_datetime>
<end_datetime>0000-00-00 00:00:00</end_datetime>
<dir>/upload/shop_37/7/8/2/item_782/</dir>
<rest></rest>
<reserved>0</reserved>
<price formatted="0.00" formattedWithCurrency="0.00 р.">0</price>
<discount formatted="0.00" formattedWithCurrency="0.00 р.">0</discount>
<tax formatted="0.00" formattedWithCurrency="0.00 р.">0</tax>
<price_tax formatted="0.00" formattedWithCurrency="0.00 р.">0</price_tax>
<currency>р.</currency>
<shop_measure id="30">
<name>кг/м³</name>
<description>килограмм на метр кубический</description>
<okei>0</okei>
</shop_measure>
<property_value id="1594636">
<property_id>367</property_id>
<value>Nauclea</value>
<property_dir_id>0</property_dir_id>
<tag_name>genus</tag_name>
</property_value>
<property_value id="1594637">
<property_id>368</property_id>
<value>diderrichii</value>
<property_dir_id>0</property_dir_id>
<tag_name>species</tag_name>
</property_value>
<property_value id="1594638">
<property_id>369</property_id>
<value>Bilinga, Badi, Opepe, Aloma, Kusia</value>
<property_dir_id>0</property_dir_id>
<tag_name>common-names</tag_name>
</property_value>
<property_value id="1594639">
<property_id>378</property_id>
<value>Западная и Центральная Африка</value>
<property_dir_id>0</property_dir_id>
<tag_name>distribution</tag_name>
</property_value>
<property_value id="4113">
<property_id>370</property_id>
<value>760</value>
<property_dir_id>0</property_dir_id>
<tag_name>density</tag_name>
</property_value>
<property_value id="4109">
<property_id>379</property_id>
<sorting>0</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>areal</tag_name>
<value>Западная Африка</value>
<list_item_id>1184</list_item_id>
<list_item id="1169">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Африка</value>
<path>africa</path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</property_value>
<property_value id="4108">
<property_id>384</property_id>
<property_dir_id>0</property_dir_id>
<tag_name>wood-type</tag_name>
<value>Лиственные</value>
<icon>fa-solid fa-leaf</icon>
<list_item_id>1222</list_item_id>
</property_value>
<property_value id="4111">
<property_id>385</property_id>
<sorting>0</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>rot-resistance</tag_name>
<value>Долговечная</value>
<description>Долговечная / Durable</description>
<list_item_id>1225</list_item_id>
</property_value>
<property_value id="4119">
<property_id>411</property_id>
<property_dir_id>0</property_dir_id>
<tag_name>status-iucn</tag_name>
<value>NT – Near Threatened (близки к уязвимому положению)</value>
<description>NT – Near Threatened (близки к уязвимому положению)</description>
<list_item_id>1272</list_item_id>
</property_value>
<property_value id="4110">
<property_id>379</property_id>
<sorting>1</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>areal</tag_name>
<value>Центральная Африка</value>
<list_item_id>1185</list_item_id>
<list_item id="1169">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Африка</value>
<path>africa</path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</property_value>
<property_value id="4112">
<property_id>385</property_id>
<sorting>1</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>rot-resistance</tag_name>
<value>Очень долговечная</value>
<description>Очень долговечная / Very durable</description>
<list_item_id>1224</list_item_id>
</property_value>
<property_value id="4497">
<property_id>371</property_id>
<value>6.89</value>
<property_dir_id>0</property_dir_id>
<tag_name>janka-hardness</tag_name>
</property_value>
<property_value id="4498">
<property_id>372</property_id>
<value>116.3</value>
<property_dir_id>0</property_dir_id>
<tag_name>modul-rupture</tag_name>
</property_value>
<property_value id="4499">
<property_id>373</property_id>
<value>13.25</value>
<property_dir_id>0</property_dir_id>
<tag_name>modul-elastic</tag_name>
</property_value>
<property_value id="4500">
<property_id>374</property_id>
<value>65.3</value>
<property_dir_id>0</property_dir_id>
<tag_name>crushing-strength</tag_name>
</property_value>
<property_value id="4501">
<property_id>375</property_id>
<value>4.8</value>
<property_dir_id>0</property_dir_id>
<tag_name>shrinkage-rad</tag_name>
</property_value>
<property_value id="4502">
<property_id>376</property_id>
<value>8.1</value>
<property_dir_id>0</property_dir_id>
<tag_name>shrinkage-tan</tag_name>
</property_value>
<property_value id="4503">
<property_id>377</property_id>
<value>12.6</value>
<property_dir_id>0</property_dir_id>
<tag_name>shrinkage-vol</tag_name>
</property_value>
<property_value id="13936">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t11.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t11.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>0</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="429175" width="1636" height="1440">nauclea-diderrichii-t11.jpg</file>
<file_small size="5400" width="240" height="212">small_nauclea-diderrichii-t11.jpg</file_small>
</property_value>
<property_value id="13937">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t12.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t12.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>1</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="515766" width="1636" height="1440">nauclea-diderrichii-t12.jpg</file>
<file_small size="6158" width="240" height="212">small_nauclea-diderrichii-t12.jpg</file_small>
</property_value>
<property_value id="13938">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t13.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t13.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>2</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="448152" width="1920" height="1291">nauclea-diderrichii-t13.jpg</file>
<file_small size="4349" width="240" height="162">small_nauclea-diderrichii-t13.jpg</file_small>
</property_value>
<property_value id="13939">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t14.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t14.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>3</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="765865" width="1920" height="1259">nauclea-diderrichii-t14.jpg</file>
<file_small size="6636" width="240" height="158">small_nauclea-diderrichii-t14.jpg</file_small>
</property_value>
<property_value id="13940">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t15.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t15.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>4</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="812948" width="1920" height="1396">nauclea-diderrichii-t15.jpg</file>
<file_small size="10291" width="240" height="175">small_nauclea-diderrichii-t15.jpg</file_small>
</property_value>
<property_value id="13941">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t21.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t21.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>5</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="340151" width="1920" height="900">nauclea-diderrichii-t21.jpg</file>
<file_small size="3532" width="240" height="113">small_nauclea-diderrichii-t21.jpg</file_small>
</property_value>
<property_value id="13942">
<property_id>381</property_id>
<file_name>no-image-1080x540.png</file_name>
<file_description>Фото нет</file_description>
<file_small_name>no-image-1080x540.png</file_small_name>
<file_small_description></file_small_description>
<sorting>6</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="3906" width="1080" height="540">no-image-1080x540.png</file>
<file_small size="3406" width="240" height="120">small_no-image-1080x540.png</file_small>
</property_value>
<property_value id="13943">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t23.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t23.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>7</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="132221" width="1321" height="1189">nauclea-diderrichii-t23.jpg</file>
<file_small size="4485" width="240" height="217">small_nauclea-diderrichii-t23.jpg</file_small>
</property_value>
<property_value id="13944">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t24.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t24.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>8</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="599595" width="1920" height="1102">nauclea-diderrichii-t24.jpg</file>
<file_small size="5140" width="240" height="138">small_nauclea-diderrichii-t24.jpg</file_small>
</property_value>
<property_value id="13945">
<property_id>381</property_id>
<file_name>no-image-1080x540.png</file_name>
<file_description>Фото нет</file_description>
<file_small_name>no-image-1080x540.png</file_small_name>
<file_small_description></file_small_description>
<sorting>9</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="3906" width="1080" height="540">no-image-1080x540.png</file>
<file_small size="3406" width="240" height="120">small_no-image-1080x540.png</file_small>
</property_value>
</shop_item>
<shop_currency id="1">
<name>р.</name>
<code>RUB</code>
<exchange_rate>1.000000</exchange_rate>
<sign>р.</sign>
<sign_position>0</sign_position>
<decimal_separator>.</decimal_separator>
<thousands_separator> </thousands_separator>
<hide_zeros>0</hide_zeros>
<date>2018-05-19</date>
<default>1</default>
<sorting>1</sorting>
</shop_currency>
<shop_measure id="2">
<name>кг</name>
<description>килограмм</description>
<okei>166</okei>
</shop_measure>
<shop_company id="3">
<name>wood-base.ru</name>
<description>wood-base.ru</description>
<image></image>
<tin></tin>
<kpp></kpp>
<psrn></psrn>
<okpo></okpo>
<okved></okved>
<legal_name></legal_name>
<accountant_legal_name></accountant_legal_name>
<guid>2C2C6E4E-DBA8-D63C-DD2B-343C6F2B9FD2</guid>
<sorting>0</sorting>
</shop_company>
<size_measure id="2">
<name>м</name>
</size_measure>
</shop>
<shop_dir_id>0</shop_dir_id>
<shop_company_id>3</shop_company_id>
<site_id>9</site_id>
<name>Виды древесины</name>
<description></description>
<structure_id>486</structure_id>
<producer_structure_id>0</producer_structure_id>
<shop_country_id>0</shop_country_id>
<shop_currency_id>1</shop_currency_id>
<shop_tax_id>0</shop_tax_id>
<shop_codetype_id>0</shop_codetype_id>
<shop_measure_id>2</shop_measure_id>
<default_shop_measure_id>30</default_shop_measure_id>
<email>kamardindg@yandex.ru</email>
<items_on_page>999</items_on_page>
<url_type>1</url_type>
<reserve>0</reserve>
<comment_active>0</comment_active>
<format_date>%d-%m-%Y</format_date>
<format_datetime>%d-%m-%Y %H:%M:%S</format_datetime>
<write_off_paid_items>0</write_off_paid_items>
<attach_digital_items>0</attach_digital_items>
<use_captcha>0</use_captcha>
<reserve_hours>0.00</reserve_hours>
<max_bonus>0</max_bonus>
<adult>0</adult>
<cpa>0</cpa>
<issue_discountcard>0</issue_discountcard>
<discountcard_template>{this.id}</discountcard_template>
<invoice_template>{this.id}</invoice_template>
<filter_mode>0</filter_mode>
<certificate_template>GIFT-{coupon_id}{generateChars(7)}</certificate_template>
<certificate_subject></certificate_subject>
<certificate_text></certificate_text>
<http>//wood-base.ru</http>
<url>/data/</url>
<producer_url>//</producer_url>
<captcha_id>0</captcha_id>
<items_count>71</items_count>
<items_total_count>71</items_total_count>
<subgroups_count>0</subgroups_count>
<subgroups_total_count>0</subgroups_total_count>
<group>0</group>
<page>0</page>
<limit>999</limit>
<shop_item_properties>
<property id="367">
<property_dir_id>0</property_dir_id>
<name>Род</name>
<description></description>
<type>1</type>
<default_value></default_value>
<tag_name>genus</tag_name>
<sorting>1</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>1</obligatory>
<prefix></prefix>
<filter>1</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="368">
<property_dir_id>0</property_dir_id>
<name>Вид</name>
<description></description>
<type>1</type>
<default_value></default_value>
<tag_name>species</tag_name>
<sorting>2</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>1</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="369">
<property_dir_id>0</property_dir_id>
<name>Другие названия</name>
<description></description>
<type>1</type>
<default_value></default_value>
<tag_name>common-names</tag_name>
<sorting>3</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="370">
<property_dir_id>0</property_dir_id>
<name>Плотность</name>
<description></description>
<type>0</type>
<default_value></default_value>
<tag_name>density</tag_name>
<sorting>4</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="30">
<name>кг/м³</name>
<description>килограмм на метр кубический</description>
<okei>0</okei>
</shop_measure>
<min>150</min>
<max>1270</max>
</property>
<property id="371">
<property_dir_id>0</property_dir_id>
<name>Твёрдость Янка</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>janka-hardness</tag_name>
<sorting>5</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="31">
<name>кН</name>
<description>килоньютон (kilonewton - kN)</description>
<okei>0</okei>
</shop_measure>
<min>0</min>
<max>20</max>
</property>
<property id="372">
<property_dir_id>0</property_dir_id>
<name>Предел прочности при изгибе</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>modul-rupture</tag_name>
<sorting>6</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="32">
<name>МПа</name>
<description>мегапаскаль (megapascal - MPa)</description>
<okei>0</okei>
</shop_measure>
<min>19</min>
<max>214</max>
</property>
<property id="373">
<property_dir_id>0</property_dir_id>
<name>Модуль упругости при изгибе</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>modul-elastic</tag_name>
<sorting>7</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="33">
<name>ГПа</name>
<description>гигапаскаль (gigapascal - GPa)</description>
<okei>0</okei>
</shop_measure>
<min>3</min>
<max>22</max>
</property>
<property id="374">
<property_dir_id>0</property_dir_id>
<name>Предел прочности при сжатии вдоль волокон</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>crushing-strength</tag_name>
<sorting>8</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="32">
<name>МПа</name>
<description>мегапаскаль (megapascal - MPa)</description>
<okei>0</okei>
</shop_measure>
<min>11</min>
<max>99</max>
</property>
<property id="375">
<property_dir_id>0</property_dir_id>
<name>Усушка радиальная</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>shrinkage-rad</tag_name>
<sorting>9</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="34">
<name>%</name>
<description>проценты</description>
<okei>0</okei>
</shop_measure>
<min>2</min>
<max>8</max>
</property>
<property id="376">
<property_dir_id>0</property_dir_id>
<name>Усушка тангенциальная</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>shrinkage-tan</tag_name>
<sorting>10</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="34">
<name>%</name>
<description>проценты</description>
<okei>0</okei>
</shop_measure>
<min>4</min>
<max>12</max>
</property>
<property id="377">
<property_dir_id>0</property_dir_id>
<name>Усушка объёмная</name>
<description></description>
<type>11</type>
<default_value></default_value>
<tag_name>shrinkage-vol</tag_name>
<sorting>11</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>6</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<shop_measure id="34">
<name>%</name>
<description>проценты</description>
<okei>0</okei>
</shop_measure>
<min>7</min>
<max>19</max>
</property>
<property id="384">
<property_dir_id>0</property_dir_id>
<name>Типы деревьев</name>
<description></description>
<type>3</type>
<default_value>1222</default_value>
<tag_name>wood-type</tag_name>
<sorting>12</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>1</obligatory>
<prefix></prefix>
<filter>4</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<filter_counts>
<count id="1221">2</count>
<count id="1222">69</count>
</filter_counts>
<list id="269">
<list_dir_id>0</list_dir_id>
<name>Типы деревьев</name>
<description>Wood type:
1. Хвойные
2. Лиственные
3. Другое</description>
<url_type>1</url_type>
<change_filename>0</change_filename>
<image_small_max_width>100</image_small_max_width>
<image_small_max_height>100</image_small_max_height>
<image_large_max_width>800</image_large_max_width>
<image_large_max_height>800</image_large_max_height>
<preserve_aspect_ratio>1</preserve_aspect_ratio>
<preserve_aspect_ratio_small>1</preserve_aspect_ratio_small>
<create_small_image>1</create_small_image>
<site_id>9</site_id>
<list_item id="1221">
<list_id>269</list_id>
<parent_id>0</parent_id>
<value>Хвойные</value>
<path>conifer</path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon>fa-solid fa-tree</icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1222">
<list_id>269</list_id>
<parent_id>0</parent_id>
<value>Лиственные</value>
<path>deciduous</path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon>fa-solid fa-leaf</icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1223">
<list_id>269</list_id>
<parent_id>0</parent_id>
<value>Другие</value>
<path>other</path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon>fa-solid fa-wheat-awn</icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
</list>
</property>
<property id="378">
<property_dir_id>0</property_dir_id>
<name>Распространение</name>
<description></description>
<type>1</type>
<default_value></default_value>
<tag_name>distribution</tag_name>
<sorting>13</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="379">
<property_dir_id>0</property_dir_id>
<name>Произрастание (регион)</name>
<description></description>
<type>3</type>
<default_value></default_value>
<tag_name>areal</tag_name>
<sorting>14</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>1</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>7</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<filter_counts>
<count id="1167">6</count>
<count id="1168">1</count>
<count id="1171">14</count>
<count id="1173">4</count>
<count id="1174">1</count>
<count id="1175">3</count>
<count id="1176">5</count>
<count id="1177">8</count>
<count id="1178">9</count>
<count id="1179">8</count>
<count id="1181">7</count>
<count id="1182">7</count>
<count id="1183">4</count>
<count id="1184">13</count>
<count id="1185">13</count>
<count id="1186">8</count>
<count id="1187">5</count>
<count id="1188">20</count>
<count id="1189">10</count>
<count id="1190">5</count>
<count id="1191">9</count>
<count id="1192">1</count>
</filter_counts>
<list id="267">
<list_dir_id>0</list_dir_id>
<name>Макрорегионы мира</name>
<description></description>
<url_type>1</url_type>
<change_filename>0</change_filename>
<image_small_max_width>0</image_small_max_width>
<image_small_max_height>0</image_small_max_height>
<image_large_max_width>0</image_large_max_width>
<image_large_max_height>0</image_large_max_height>
<preserve_aspect_ratio>1</preserve_aspect_ratio>
<preserve_aspect_ratio_small>1</preserve_aspect_ratio_small>
<create_small_image>1</create_small_image>
<site_id>9</site_id>
<list_item id="1167">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Европа</value>
<path>europe</path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
<list_item id="1173">
<list_id>267</list_id>
<parent_id>1167</parent_id>
<value>Западная Европа</value>
<path></path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1174">
<list_id>267</list_id>
<parent_id>1167</parent_id>
<value>Северная Европа</value>
<path></path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1175">
<list_id>267</list_id>
<parent_id>1167</parent_id>
<value>Южная Европа</value>
<path></path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1176">
<list_id>267</list_id>
<parent_id>1167</parent_id>
<value>Восточная Европа и Россия</value>
<path></path>
<sorting>4</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</list_item>
<list_item id="1168">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Азия</value>
<path>asia</path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
<list_item id="1177">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Западная Азия</value>
<path></path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1178">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Центральная Азия</value>
<path></path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1179">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Южная Азия</value>
<path></path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1180">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Северная Азия</value>
<path></path>
<sorting>4</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1181">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Восточная Азия</value>
<path></path>
<sorting>5</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1182">
<list_id>267</list_id>
<parent_id>1168</parent_id>
<value>Юго-Восточная Азия</value>
<path></path>
<sorting>6</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</list_item>
<list_item id="1169">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Африка</value>
<path>africa</path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
<list_item id="1183">
<list_id>267</list_id>
<parent_id>1169</parent_id>
<value>Северная Африка</value>
<path></path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1184">
<list_id>267</list_id>
<parent_id>1169</parent_id>
<value>Западная Африка</value>
<path></path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1185">
<list_id>267</list_id>
<parent_id>1169</parent_id>
<value>Центральная Африка</value>
<path></path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1186">
<list_id>267</list_id>
<parent_id>1169</parent_id>
<value>Восточная Африка</value>
<path></path>
<sorting>4</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1187">
<list_id>267</list_id>
<parent_id>1169</parent_id>
<value>Южная Африка</value>
<path></path>
<sorting>5</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</list_item>
<list_item id="1170">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Америка</value>
<path>america</path>
<sorting>4</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
<list_item id="1188">
<list_id>267</list_id>
<parent_id>1170</parent_id>
<value>Северная Америка</value>
<path></path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1189">
<list_id>267</list_id>
<parent_id>1170</parent_id>
<value>Центральная Америка</value>
<path></path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1190">
<list_id>267</list_id>
<parent_id>1170</parent_id>
<value>Карибский бассейн</value>
<path></path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1171">
<list_id>267</list_id>
<parent_id>1170</parent_id>
<value>Южная Америка</value>
<path></path>
<sorting>4</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</list_item>
<list_item id="1172">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Австралия и Океания</value>
<path>australia</path>
<sorting>5</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
<list_item id="1191">
<list_id>267</list_id>
<parent_id>1172</parent_id>
<value>Австралия и Новая Зеландия</value>
<path></path>
<sorting>1</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
<list_item id="1192">
<list_id>267</list_id>
<parent_id>1172</parent_id>
<value>Океания (Меланезия, Микронезия, Полинезия)</value>
<path></path>
<sorting>2</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</list_item>
</list>
</property>
<property id="385">
<property_dir_id>0</property_dir_id>
<name>Устойчивость к гниению</name>
<description></description>
<type>3</type>
<default_value></default_value>
<tag_name>rot-resistance</tag_name>
<sorting>15</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>1</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>7</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<filter_counts>
<count id="0">10</count>
<count id="1224">26</count>
<count id="1225">8</count>
<count id="1226">18</count>
<count id="1227">22</count>
<count id="1228">10</count>
</filter_counts>
<list id="270">
<list_dir_id>0</list_dir_id>
<name>Устойчивость к гниению</name>
<description>Устойчивость древесины к гниению -- Rot Resistance</description>
<url_type>1</url_type>
<change_filename>0</change_filename>
<image_small_max_width>100</image_small_max_width>
<image_small_max_height>100</image_small_max_height>
<image_large_max_width>800</image_large_max_width>
<image_large_max_height>800</image_large_max_height>
<preserve_aspect_ratio>1</preserve_aspect_ratio>
<preserve_aspect_ratio_small>1</preserve_aspect_ratio_small>
<create_small_image>1</create_small_image>
<site_id>9</site_id>
<list_item id="1224">
<list_id>270</list_id>
<parent_id>0</parent_id>
<value>Очень долговечная</value>
<path>very-durable</path>
<sorting>1</sorting>
<description>Очень долговечная / Very durable</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1225">
<list_id>270</list_id>
<parent_id>0</parent_id>
<value>Долговечная</value>
<path>durable</path>
<sorting>2</sorting>
<description>Долговечная / Durable</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1226">
<list_id>270</list_id>
<parent_id>0</parent_id>
<value>Средняя</value>
<path>moderately-durable</path>
<sorting>3</sorting>
<description>Умеренно долговечная / Moderately durable</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1227">
<list_id>270</list_id>
<parent_id>0</parent_id>
<value>Недолговечная</value>
<path>non-durable</path>
<sorting>4</sorting>
<description>Недолговечная / Non-durable</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1228">
<list_id>270</list_id>
<parent_id>0</parent_id>
<value>Скоропортящаяся</value>
<path>perishable</path>
<sorting>5</sorting>
<description>Скоропортящаяся / Perishable</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
</list>
</property>
<property id="411">
<property_dir_id>0</property_dir_id>
<name>Статус МСОП</name>
<description><p>Статус присваивается <dfn title="Международный союз охраны природы и природных ресурсов (англ. International Union for Conservation of Nature and Natural Resources, IUCN) – международная некоммерческая организация, основанная в 1948 г.">МСОП</dfn> на основании степени угроз биологическим видам или инфравидовым (внутривидовым) таксонам. <b>Международный союз охраны природы и природных ресурсов</b>, <b>МСОП</b> (англ. <i>International Union for Conservation of Nature and Natural Resources</i>, <i>IUCN</i>) – международная некоммерческая организация, основанная в 1948 году. Занимается освещением проблем сохранения биоразнообразия планеты; представляет новости, конгрессы, проходящие в разных странах, списки видов, нуждающихся в особой охране в разных регионах планеты.</p></description>
<type>3</type>
<default_value></default_value>
<tag_name>status-iucn</tag_name>
<sorting>16</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>4</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
<filter_counts>
<count id="1271">1</count>
<count id="1272">1</count>
</filter_counts>
<list id="280">
<list_dir_id>0</list_dir_id>
<name>Статус МСОП</name>
<description>Устойчивость развития (возобновляемость)</description>
<url_type>1</url_type>
<change_filename>0</change_filename>
<image_small_max_width>480</image_small_max_width>
<image_small_max_height>360</image_small_max_height>
<image_large_max_width>1920</image_large_max_width>
<image_large_max_height>1440</image_large_max_height>
<preserve_aspect_ratio>1</preserve_aspect_ratio>
<preserve_aspect_ratio_small>1</preserve_aspect_ratio_small>
<create_small_image>1</create_small_image>
<site_id>9</site_id>
<list_item id="1267">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>EX – Extinct (исчезнувшие)</value>
<path>ex-extinct-ischeznuvshie</path>
<sorting>1</sorting>
<description>EX – Extinct (исчезнувшие)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-1-EX-b.png</image_large>
<image_small>small_status-iucn-1-EX-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/6/item_1267/</dir>
</list_item>
<list_item id="1268">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>EW – Extinct in the Wild (исчезнувшие в дикой природе)</value>
<path>ew-extinct-in-the-wild-ischeznuvshie-v-dikoj-prirode</path>
<sorting>2</sorting>
<description>EW – Extinct in the Wild (исчезнувшие в дикой природе)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-2-EW-b.png</image_large>
<image_small>small_status-iucn-2-EW-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/6/item_1268/</dir>
</list_item>
<list_item id="1269">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>CR – Critically Endangered (в критической опасности)</value>
<path>cr-critically-endangered-v-kriticheskoj-opasnosti</path>
<sorting>3</sorting>
<description>CR – Critically Endangered (в критической опасности)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-3-CR-b.png</image_large>
<image_small>small_status-iucn-3-CR-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/6/item_1269/</dir>
</list_item>
<list_item id="1270">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>EN – Endangered (в опасности)</value>
<path>en-endangered-v-opasnosti</path>
<sorting>4</sorting>
<description>EN – Endangered (в опасности)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-4-EN-b.png</image_large>
<image_small>small_status-iucn-4-EN-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/7/item_1270/</dir>
</list_item>
<list_item id="1271">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>VU – Vulnerable (в уязвимом положении)</value>
<path>vu-vulnerable-v-uyazvimom-polozhenii</path>
<sorting>5</sorting>
<description>VU – Vulnerable (в уязвимом положении)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-5-VU-b.png</image_large>
<image_small>small_status-iucn-5-VU-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/7/item_1271/</dir>
</list_item>
<list_item id="1272">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>NT – Near Threatened (близки к уязвимому положению)</value>
<path>nt-near-threatened-blizki-k-uyazvimomu-polozheniyu</path>
<sorting>6</sorting>
<description>NT – Near Threatened (близки к уязвимому положению)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-6-NT-b.png</image_large>
<image_small>small_status-iucn-6-NT-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/7/item_1272/</dir>
</list_item>
<list_item id="1273">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>LC – Least Concern (находятся под наименьшей угрозой)</value>
<path>lc-least-concern-naxodyatsya-pod-naimenshej-ugrozoj</path>
<sorting>7</sorting>
<description>LC – Least Concern (находятся под наименьшей угрозой)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-7-LC-b.png</image_large>
<image_small>small_status-iucn-7-LC-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/7/item_1273/</dir>
</list_item>
<list_item id="1274">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>DD – Data Deficient (данных недостаточно)</value>
<path>dd-data-deficient-dannyx-nedostatochno</path>
<sorting>8</sorting>
<description>DD – Data Deficient (данных недостаточно)</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
<list_item id="1275">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>NE – Not Evaluated (угроза не оценивается)</value>
<path>ne-not-evaluated-ugroza-ne-oczenivaetsya</path>
<sorting>9</sorting>
<description>NE – Not Evaluated (угроза не оценивается)</description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height>0</image_small_height>
<image_small_width>0</image_small_width>
<image_large_height>0</image_large_height>
<image_large_width>0</image_large_width>
<active>1</active>
</list_item>
</list>
</property>
<property id="380">
<property_dir_id>0</property_dir_id>
<name>Верхний колонтитул таблицы с фото древесины</name>
<description><p class="card-header">Образцы досок <b class="color-dark-blue">Павловнии войлочной</b> (<i class="color-dark-blue">Paulownia tomentosa</i>):<br>1, 2 – обе стороны доски; 3 – торец доски; 4, 5 – торец доски (волокна древесины увеличены); 5 – отшлифовано P220…240 (англ. <b>ONE INCH</b> – один дюйм = 2,54 см)</p></description>
<type>6</type>
<default_value></default_value>
<tag_name>heading-timber</tag_name>
<sorting>17</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>0</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="381">
<property_dir_id>0</property_dir_id>
<name>Фото - древесина</name>
<description></description>
<type>2</type>
<default_value></default_value>
<tag_name>foto-timber</tag_name>
<sorting>18</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>1</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="382">
<property_dir_id>0</property_dir_id>
<name>Фото - галерея 1</name>
<description></description>
<type>2</type>
<default_value></default_value>
<tag_name>foto</tag_name>
<sorting>19</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>1</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
<property id="383">
<property_dir_id>0</property_dir_id>
<name>Фото - галерея 2</name>
<description></description>
<type>2</type>
<default_value></default_value>
<tag_name>foto-img-block</tag_name>
<sorting>20</sorting>
<prefix_small_file>small_property_</prefix_small_file>
<prefix_large_file>property_</prefix_large_file>
<watermark_default_use_large_image>0</watermark_default_use_large_image>
<watermark_default_use_small_image>0</watermark_default_use_small_image>
<typograph>0</typograph>
<trailing_punctuation>0</trailing_punctuation>
<multiple>1</multiple>
<indexing>1</indexing>
<obligatory>0</obligatory>
<prefix></prefix>
<filter>0</filter>
<show_in_group>1</show_in_group>
<show_in_item>1</show_in_item>
</property>
</shop_item_properties>
<comment_properties></comment_properties>
<shop_item id="782">
<shortcut_id>0</shortcut_id>
<shop_tax_id>0</shop_tax_id>
<shop_seller_id>0</shop_seller_id>
<shop_group_id>0</shop_group_id>
<shop_currency_id>1</shop_currency_id>
<shop_id>37</shop_id>
<shop_producer_id>0</shop_producer_id>
<shop_measure_id>30</shop_measure_id>
<shop_item_type_id>1</shop_item_type_id>
<type>0</type>
<name>Билинга</name>
<marking></marking>
<vendorcode></vendorcode>
<description></description>
<text><div class="card-kd col-sm-5 col-md-4 col-lg-3 col-xxl-2 float-end ms-sm-4 mb-3" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<div class="card-kd-header alert-success"><span itemprop="name">Билинга</span><br><i class="color-dark-blue" itemprop="alternateName">Nauclea diderrichii</i></div>
<div class="row row-cols-2 row-cols-sm-1 p-1 gx-1">
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-01.jpg" data-fancybox="gallery" data-caption="Nauclea diderrichii" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-01s.jpg" alt="Nauclea diderrichii"></a>
<figcaption itemprop="caption" class="visually-hidden">Nauclea diderrichii</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-02.jpg" data-fancybox="gallery" data-caption="Nauclea diderrichii" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-02s.jpg" alt="Nauclea diderrichii"></a>
<figcaption itemprop="caption" class="visually-hidden">Nauclea diderrichii</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-03.jpg" data-fancybox="gallery" data-caption="Nauclea diderrichii" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-03s.jpg" alt="Nauclea diderrichii"></a>
<figcaption itemprop="caption" class="visually-hidden">Nauclea diderrichii</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-05.jpg" data-fancybox="gallery" data-caption="Nauclea diderrichii" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-05s.jpg" alt="Nauclea diderrichii"></a>
<figcaption itemprop="caption" class="visually-hidden">Nauclea diderrichii</figcaption>
</figure>
<figure class="col-8"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-04.jpg" data-fancybox="gallery" data-caption="Nauclea diderrichii" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-04s.jpg" alt="Nauclea diderrichii"></a>
<figcaption itemprop="caption" class="visually-hidden">Nauclea diderrichii</figcaption>
</figure>
<figure class="col-4"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-07.jpg" data-fancybox="gallery" data-caption="Листья" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-07s.jpg" alt="Листья Nauclea diderrichii"></a>
<figcaption itemprop="caption">Листья</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-06.jpg" data-fancybox="gallery" data-caption="Цветы" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-06s.jpg" alt="Цветы Nauclea diderrichii"></a>
<figcaption itemprop="caption">Цветы</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-08.jpg" data-fancybox="gallery" data-caption="Зрелые плоды" itemprop="image"> <img class="img-fluid" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-08s.jpg" alt="Зрелые плоды Nauclea diderrichii"></a>
<figcaption itemprop="caption">Зрелые плоды</figcaption>
</figure>
</div>
</div>
<p><strong>Науклея Дидерриха</strong> (лат. <em>Nauclea diderrichii</em>) – вид крупных тропических деревьев семейства Мареновые (<i>Rubiaceae</i>), произрастающих в тропических лесах Западной и Центральной Африки. Дерево имеет различные местные названия (наиболее распространнённые из них): <b class="color-dark-blue">Билинга</b> (англ. <i>Bilinga</i>), <b class="color-dark-blue">Бади</b> (англ. <i>Badi</i>), <b class="color-dark-blue">Опепе</b> (англ. <i>Opepe</i>), <b class="color-dark-blue">Алома</b> (англ. <i>Aloma</i>), <b class="color-dark-blue">Кусия</b> (англ. <i>Kusia</i>).</p>
<div class="accordion d-grid mb-3">
<div class="accordion-item"><button class="accordion-button collapsed fw-bold fs-5" type="button" data-bs-toggle="collapse" data-bs-target="#names" aria-expanded="false" aria-controls="names">Основные местные названия</button>
<div id="names" class="accordion-collapse collapse" aria-labelledby="Основные местные названия">
<div class="accordion-body p-2">
<div class="table-responsive">
<table class="table table-borderless table-xs table-hover table_sort mb-0">
<thead>
<tr class="border-bottom">
<th class="fw-bold">№</th>
<th class="fw-bold col_sort">Название</th>
<th class="fw-bold col_sort">Название (англ.)</th>
<th class="fw-bold col_sort">Страна</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Билинга</td>
<td>Bilinga</td>
<td>Габон</td>
</tr>
<tr>
<td>2</td>
<td>Бади</td>
<td>Badi</td>
<td>Кот-д’Ивуар</td>
</tr>
<tr>
<td>3</td>
<td>Опепе</td>
<td>Opepe</td>
<td>Бенин, Нигерия, Великобритания</td>
</tr>
<tr>
<td>4</td>
<td>Энголо</td>
<td>Engolo</td>
<td>Ангола</td>
</tr>
<tr>
<td>5</td>
<td>Кусия</td>
<td>Kusia</td>
<td>Гана, Либерия</td>
</tr>
<tr>
<td>6</td>
<td>Алома</td>
<td>Aloma</td>
<td>Экваториальная Гвинея, Германия</td>
</tr>
<tr>
<td>7</td>
<td>Акондок</td>
<td>Akondoc, Akondok</td>
<td>Камерун</td>
</tr>
<tr>
<td>8</td>
<td>Килинги</td>
<td>Kilingi</td>
<td>Уганда</td>
</tr>
<tr>
<td>9</td>
<td>Бандюй</td>
<td>Bundui</td>
<td>Сьерра-Леоне</td>
</tr>
<tr>
<td>10</td>
<td>Килу</td>
<td>Kilu</td>
<td>Центральноафриканская Республика</td>
</tr>
<tr>
<td>11</td>
<td>Н'гулу-маза</td>
<td>N’gulu-maza</td>
<td>Конго, ДР Конго</td>
</tr>
<tr>
<td>12</td>
<td>Линзи</td>
<td>Linzi</td>
<td>Конго</td>
</tr>
<tr>
<td>13</td>
<td>Мокессе</td>
<td>Mokesse</td>
<td>Конго</td>
</tr>
<tr>
<td>14</td>
<td>Бонкингу, Бонкангу</td>
<td>Bonkingu, Bonkngu</td>
<td>ДР Конго</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="accordion d-inline d-sm-grid mb-3">
<div class="accordion-item"><button class="accordion-button d-grid d-lg-flex collapsed fw-bold fs-5" type="button" data-bs-toggle="collapse" data-bs-target="#synonyms" aria-expanded="false" aria-controls="synonyms"> <span class="col-auto">Синонимы <i class="color-dark-blue mx-sm-2">Nauclea diderrichii</i></span> <small class="col-lg fs-6 fw-normal text-muted ps-lg-3">(Laurent) Merr., J. Washington Acad. Sci. 5: 535 (1915)</small> </button>
<div id="synonyms" class="accordion-collapse collapse" aria-labelledby="Синонимы Nauclea diderrichii">
<div class="accordion-body">
<h6 class="fw-bold">Гомотипные синонимы:</h6>
<ul>
<li><i class="color-dark-blue">Sarcocephalus diderrichii</i> – <small class="text-muted">Laurent in T.Masui, Etat. Indep. Congo Expos. Brux. 1897: 439 (1897)</small></li>
</ul>
<h6 class="fw-bold mt-3">Гетеротипные синонимы:</h6>
<ul>
<li><i class="color-dark-blue">Nauclea trillesii</i> – <small class="text-muted">Merr. in J. Washington Acad. Sci. 5: 537 (1915), <dfn title="Сокр. от лат. not validly publication – недействительная публикация">not validly publ.</dfn></small></li>
<li><i class="color-dark-blue">Sarcocephalus badi</i> – <small class="text-muted">Aubrév. in Fl. Forest. Soudano-Guin.: 475 (1950), without a Latin descr.</small></li>
<li><i class="color-dark-blue">Sarcocephalus trillesii</i> – <small class="text-muted">Pierre ex A.Chev. in Vég. Ut. Afr. Trop. Franç.: 229 (1916)</small></li>
</ul>
</div>
</div>
</div>
</div>
<h4 class="full-line">Ботаническое описание</h4>
<p>Вечнозелёное дерево крупных размеров с густой, широкой, шаровидной кроной. Обычно оно вырастает до 40 м в высоту, но в исключительных случаях может достигать 50 м. Прямой цилиндрический ствол может быть неразветвлённым на протяжении до 27 м, а диаметр на уровне груди – от 1 до 2 м.</p>
<h4 class="full-line">Распространение и среда обитания</h4>
<div class="card-kd col-7 col-sm-6 col-md-5 col-lg-4 col-xxl-3 float-start me-3 me-sm-4 mb-3" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<div class="card-kd-header alert-success" itemprop="name">Ареал <i class="color-dark-blue">Nauclea diderrichii</i></div>
<figure class="p-1"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-areal-1.png" data-fancybox="gallery" itemprop="image" data-caption="Естественный (изначальный) ареал Nauclea diderrichii на онлайн-карте растений Royal Botanic Gardens Kew, Plants of the World Online"> <img class="img-fluid mb-1" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-areal-1s.png" alt="Естественный (изначальный) ареал Nauclea diderrichii на онлайн-карте растений Royal Botanic Gardens Kew, Plants of the World Online"></a>
<figcaption class="text-start mt-1" itemprop="caption">Онлайн-карта растений Royal Botanic Gardens <dfn class="font-family-oranienbaum fst-normal fw-bold" title="Plants of the World Online – ботанический сад Кью">Kew</dfn>
<table class="table table-xs table-borderless mt-2">
<tbody>
<tr>
<td>
<div style="width: 24px; height: 24px; background-color: #5c9a45;"></div>
</td>
<td>Естественный (изначальный) ареал произрастания</td>
</tr>
</tbody>
</table>
</figcaption>
</figure>
</div>
<h6 class="fw-bold">Естественный ареал произрастания</h6>
<p>Вид произрас<wbr>та<wbr>ет в эквато<wbr>риаль<wbr>ных (субтро<wbr>пичес<wbr>ких или тропических) влажных низменных лесах Западной и Центральной Африки. Встречается на территории таких государств, как Гвинея, Сьерра-Леоне, Либерия, Кот-д’Ивуар, Гана, Бенин, Нигерия, Камерун, Центрально<wbr>африканская Республика, Габон, Конго, ДР Конго, Уганда, Ангола, Мозамбик.</p>
<h6 class="fw-bold">Среда обитания (экология)</h6>
<p>Несмотря на широкое распространение в дикой природе, вид распределён рассеяно, встречается в гуще вечнозелёных лесов, на высотах до 800 метров над уровнем моря. Этот светолюбивый вид обильно разрастается на прогалинах и полянах и часто встречается почти целыми группами в переходной зоне между пресноводным болотом и низинным лесом.</p>
<h6 class="fw-bold">Подробности и особенности произрастания</h6>
<p>Дерево, произрастающее во влажных тропических низинах, обычно встречается на высоте до 500 м над уровнем моря. Лучше всего он растёт в регионах, где среднегодовая дневная температура составляет +28…+34°C, но может выдер<wbr>живать и +22…+38°C. Растение предпо<wbr>чита<wbr>ет среднегодовое количество осадков в диапазоне от 1600 до 3500 мм, но может переносить и от 1200 до 4500 мм.</p>
<p>Требует солнечного места, даже будучи молодым деревом. Предпочитает хорошо дренированную, умеренно плодородную почву от лёгкой до средней по плотности. Плохо растёт на чрезмерно влажных почвах или на латеритных почвах, которые полностью высыхают в засушли<wbr>вый сезон. Предпочитает pH в диапазоне 5,5–6,5, допускает значения от 4,5 до 7,5.</p>
<p>Потенциальная годовая выработка древесины составляет 3–10 м³ на гектар. Побеги дерева легко укореняются.</p>
<h6 class="fw-bold">Размножение</h6>
<p>Семена не требуют предварительной обработки. Размножение лучше всего проводить в питомнике из-за небольшого размера семян. Когда сеянцам исполнится около месяца, рассадите их по отдельным горшкам. Семена могут оставаться в состоянии покоя в лесной почве. При хранении они сохраняют жизнеспособ<wbr>ность в течение как минимум года. Семена прорастают под воздейст<wbr>вием повышенного уровня освещённости. Влияние на прорастание семян, прошедших через кишечник животного, ещё предстоит изучить; однако всходы часто встречаются вдоль слоновьих троп. Размножение черенкованием – просто.</p>
<h4 class="full-line">Хозяйственное значение и применение</h4>
<h6 class="fw-bold">Пищевое применение</h6>
<p>Используется в пальмовом супе в Гане. В отчёте, скорее всего, говорится о листьях или плодах, но не уточняется, о каких именно.</p>
<h6 class="fw-bold">Лекарственное применение</h6>
<p><span class="text-primary me-3">•</span>Отвар из коры используется для лечения анемии, болей в желудке и несварения. Кору используют для приготовления настоя, который применяют при лечении гонореи, а также в составе настоя для лечения желтухи.<br><span class="text-primary me-3">•</span>Отвар из листьев используют для промывания глаз при кори.</p>
<h6 class="fw-bold">Использование в агролесомелиорации</h6>
<p>В пределах своего ареала этот вид является естественным первопроходцем при восстановлении лесного покрова и может быстро захватывать открытые территории. Он может использоваться в проектах по восстановлению лесов для возвращения им естественного вида. Иногда его выращивают как тенистое дерево или <dfn title="…или дерево-кормилица (англ. Nurse tree) – это более крупное, быстрорастущее дерево, которое укрывает меньшее, медленнорастущее дерево или растение. Дерево-нянька может обеспечить тень, укрытие от ветра и защиту от животных">дерево-“няньку”</dfn> для более ценных пород древесины, а иногда как самостоятельную полезную породу.</p>
<h4 class="full-line">Древесина</h4>
<div class="col-sm-8 col-md-6 col-lg-4 float-end ms-sm-4">
<div class="row gx-3" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<figure class="col-6"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-1.jpg" data-fancybox="gallery" data-caption="Билинга (Nauclea diderrichii) – древесина шлифованная" itemprop="image"> <img class="img-thumbnail" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-1s.jpg" alt="Билинга (Nauclea diderrichii) – древесина шлифованная"></a>
<figcaption itemprop="caption">Древесина шлифованная</figcaption>
</figure>
<figure class="col-6"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-2.jpg" data-fancybox="gallery" data-caption="Билинга (Nauclea diderrichii) – древесина под лаком" itemprop="image"> <img class="img-thumbnail" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-2s.jpg" alt="Билинга (Nauclea diderrichii) – древесина под лаком"></a>
<figcaption itemprop="caption">Древесина под лаком</figcaption>
</figure>
<figure><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-3.jpg" data-fancybox="gallery" data-caption="Билинга (Nauclea diderrichii) – торец доски" itemprop="image"> <img class="img-thumbnail" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-3s.jpg" alt="Билинга (Nauclea diderrichii) – торец доски"></a>
<figcaption itemprop="caption">Торец доски</figcaption>
</figure>
</div>
</div>
<div class="card-kd col-lg-6 float-end p-1 ms-lg-4 mb-3 clear-both">
<div class="row g-0" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<figure class="col-4"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-4.jpg" data-fancybox="gallery" data-caption="Билинга (Nauclea diderrichii) – торец доски – волокна древесины, увел. 10х" itemprop="image"> <img class="img-fluid pe-1" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-4s.jpg" alt="Билинга (Nauclea diderrichii) – торец доски – волокна древесины, увел. 10х"></a>
<figcaption itemprop="name"><b>Билинга</b><br>(<i>Nauclea diderrichii</i>)<br>торец доски – волокна древесины, увел. 10х</figcaption>
</figure>
<div class="col font-family-narrow bg-warning bg-opacity-10 p-2 ps-3" itemprop="caption"><a class="alert-link" href="/articles/anatomy-hardwood/#1-1" target="_blank" rel="noopener">Пористость</a>: диффузно-пористая<br><a class="alert-link" href="/articles/anatomy-hardwood/#1-2" target="_blank" rel="noopener">Расположение пор</a>: исключительно одиночные, иногда в виде диагональных или радиальных узоров<br><a class="alert-link" href="/articles/anatomy-hardwood/#1-3" target="_blank" rel="noopener">Сосуды (поры)</a>: от крупных до очень крупных, от нескольких до очень небольшого количества; иногда встречаются желтоватые отложения<br><a class="alert-link" href="/articles/anatomy-hardwood/#2" target="_blank" rel="noopener">Паренхима</a>: диффузно-агрегированная<br><a class="alert-link" href="/articles/anatomy-hardwood/#3" target="_blank" rel="noopener">Лучи</a>: узкая ширина, нормальное расстояние между лучами; некоторые лучи едва видны без увеличения<br><a class="alert-link" href="/articles/fluorescence/" target="_blank" rel="noopener">Флуоресценция</a>: сердцевина древесины флуоресцирует от слабого до средне-жёлто-зелёного оттенка при ультрафиолетовом освещении в <q>чёрном свете</q></div>
</div>
</div>
<div class="col-md-8 col-lg-6 float-end ms-md-4 clear-both">
<div class="row gx-3" itemscope="itemscope" itemtype="http://schema.org/ImageObject">
<figure class="col-7"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-5.jpg" data-fancybox="gallery" data-caption="Выточено из билинги (Nauclea diderrichii)" itemprop="image"> <img class="img-thumbnail" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-5s.jpg" alt="Выточено из билинги (Nauclea diderrichii)"></a>
<figcaption itemprop="caption">Выточено из билинги</figcaption>
</figure>
<figure class="col-5"><a href="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-6.jpg" data-fancybox="gallery" data-caption="Ветряная мельница в Де-Хупе (Гардерен, провинция Гелдерланд, Нидерланды) – балки сделаны из билинги (Nauclea diderrichii). Фото от 31 мая 2007 года" itemprop="image"> <img class="img-thumbnail" src="/img/wood-tree/nauclea/diderrichii/nauclea-diderrichii-timber-6s.jpg" alt="Ветряная мельница в Де-Хупе (Гардерен, провинция Гелдерланд, Нидерланды) – балки сделаны из билинги (Nauclea diderrichii)"></a>
<figcaption itemprop="caption">Ветряная мельница в Де-Хупе (Нидерланды) – балки сделаны из билинги</figcaption>
</figure>
</div>
</div>
<p>Сердцевина золотисто-жёлтого, жёлто-красного или коричневого цвета, с оранжево-красными полосами; со временем темнеет. Заболонь шириной 3–5 см светло- или розовато-жёлтая и чётко отличается по цвету от сердцевины. Структура волокон часто волнистая и спутанная (свилеватая). Однородная крупная грубая текстура с хорошим естественным блеском.</p>
<p>Устойчивость к гниению оценивается от умеренной до высокой; сердцевина древесины, обладает умеренной или хорошей устойчивостью к насекомым и морским древоточцам.</p>
<h6 class="fw-bold">Технологичность (обработка)</h6>
<p>Древесина умеренно проста в обработке, но при работе с четвертными распилами (<i>quartersawn surfaces</i>) или в местах с сильно неоднородными волокнами необходимо соблюдать осторожность, чтобы избежать вырывов. Плохо гнётся. Хорошо скручивается, склеивается и отделывается. Характерного запаха нет.</p>
<h6 class="fw-bold">Монтаж</h6>
<p>Гвоздевание/свинчивание – хорошо, с предвари<wbr>тельным высверливанием; склеивание – правильное. Легкая тенденция к растрескиванию при гвоздевании. Склеивать осторожно – кислотная древесина.</p>
<h6 class="fw-bold">Применение (использование)</h6>
<p>Шпалы, грубые столярные изделия, мосты (части в контакте с водой или землей), гидротехнические сооружения (морская вода), промышленные полы, столярные изделия (мебель высокого класса), полы в транспорте и контейнерах, мебельные компоненты, шпон строганый, судостроение (обшивка и палуба), внешняя облицовка, интерьерные столярные изделия, внутренняя облицовка, мосты (части не в контакте с водой или землей), устойчивость к ряду кислот.</p>
<p>Древесина используется в судостроении и иногда заменяет дуб (за исключением случаев, когда древесину нужно согнуть, так как она плохо поддается сгибанию под воздействием пара). Золотисто-оранжевый цвет, устойчивость к древоточцам и большой выбор размеров делают эту древесину уникальным материалом для наружных работ.</p>
<p>Древесина часто используется для изготовления несущих элементов строительных конструкций, а также для других применений с повышенными требованиями к свойствам древесины, таким как покрытия причалов, пристаней, днища вагонов. Используется в кораблестроении для строительства палуб. Также применяется для изготовления паркетов, в мебельном производстве, в отделке интерьеров, для изготовления декоративных токарных изделий.</p>
<div class="note note-success d-table d-inline-block mb-3"><b class="alert-success">Устойчивость развития (возобновляемость)</b>: эта порода древесины не указана в Приложениях <dfn title="Конвенция о международной торговле видами дикой фауны и флоры, находящимися под угрозой исчезновения – Convention on International Trade in Endangered Species of Wild Fauna and Flora, CITES">СИТЕС</dfn>, но внесена в <q>Красный список видов</q>, нахо<wbr>дящихся под угрозой исчезновения <dfn title="Международный союз охраны природы и природных ресурсов – International Union for Conservation of Nature and Natural Resources, IUCN">МСОП</dfn>, который в 1996 году поместил этот вид в категорию видов, находящихся в уязвимом положении. Технически он не соответствует критериям Красного списка уязвимых или находящихся под угрозой исчезновения видов, но близок к тому, чтобы соответствовать требованиям и / или может соответствовать требованиям в ближайшем будущем. Числился уязвимым с 1998 по 2021 год, но с тех пор был понижен. Ему угрожает чрезмерная эксплуатация ради древесины и утрата среды обитания.</div></text>
<image_large>nauclea-diderrichii.jpg</image_large>
<image_small>small_nauclea-diderrichii.jpg</image_small>
<weight>0.000</weight>
<package_weight>0.000</package_weight>
<active>1</active>
<closed>0</closed>
<siteuser_group_id>-1</siteuser_group_id>
<sorting>0</sorting>
<path>bilinga</path>
<seo_title></seo_title>
<seo_description></seo_description>
<seo_keywords></seo_keywords>
<indexing>1</indexing>
<image_small_height>270</image_small_height>
<image_small_width>270</image_small_width>
<image_large_height>450</image_large_height>
<image_large_width>450</image_large_width>
<manufacturer_warranty>0</manufacturer_warranty>
<country_of_origin></country_of_origin>
<siteuser_id>0</siteuser_id>
<modification_id>0</modification_id>
<guid>0F198D19-E870-C250-4780-51E38B2507FC</guid>
<showed>162</showed>
<length>0.00</length>
<width>0.00</width>
<height>0.00</height>
<package_length>0.00</package_length>
<package_width>0.00</package_width>
<package_height>0.00</package_height>
<min_quantity>1.00</min_quantity>
<max_quantity>0.00</max_quantity>
<quantity_step>1.00</quantity_step>
<delivery>1</delivery>
<pickup>1</pickup>
<store>0</store>
<adult>0</adult>
<cpa>1</cpa>
<url>/data/bilinga/</url>
<date>23-07-2025</date>
<datetime>23-07-2025 23:40:44</datetime>
<start_datetime>0000-00-00 00:00:00</start_datetime>
<end_datetime>0000-00-00 00:00:00</end_datetime>
<dir>/upload/shop_37/7/8/2/item_782/</dir>
<rest></rest>
<reserved>0</reserved>
<price formatted="0.00" formattedWithCurrency="0.00 р.">0</price>
<discount formatted="0.00" formattedWithCurrency="0.00 р.">0</discount>
<tax formatted="0.00" formattedWithCurrency="0.00 р.">0</tax>
<price_tax formatted="0.00" formattedWithCurrency="0.00 р.">0</price_tax>
<currency>р.</currency>
<shop_measure id="30">
<name>кг/м³</name>
<description>килограмм на метр кубический</description>
<okei>0</okei>
</shop_measure>
<property_value id="1594636">
<property_id>367</property_id>
<value>Nauclea</value>
<property_dir_id>0</property_dir_id>
<tag_name>genus</tag_name>
</property_value>
<property_value id="1594637">
<property_id>368</property_id>
<value>diderrichii</value>
<property_dir_id>0</property_dir_id>
<tag_name>species</tag_name>
</property_value>
<property_value id="1594638">
<property_id>369</property_id>
<value>Bilinga, Badi, Opepe, Aloma, Kusia</value>
<property_dir_id>0</property_dir_id>
<tag_name>common-names</tag_name>
</property_value>
<property_value id="1594639">
<property_id>378</property_id>
<value>Западная и Центральная Африка</value>
<property_dir_id>0</property_dir_id>
<tag_name>distribution</tag_name>
</property_value>
<property_value id="4113">
<property_id>370</property_id>
<value>760</value>
<property_dir_id>0</property_dir_id>
<tag_name>density</tag_name>
</property_value>
<property_value id="4109">
<property_id>379</property_id>
<sorting>0</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>areal</tag_name>
<value>Западная Африка</value>
<list_item_id>1184</list_item_id>
<list_item id="1169">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Африка</value>
<path>africa</path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</property_value>
<property_value id="4108">
<property_id>384</property_id>
<property_dir_id>0</property_dir_id>
<tag_name>wood-type</tag_name>
<value>Лиственные</value>
<icon>fa-solid fa-leaf</icon>
<list_item_id>1222</list_item_id>
</property_value>
<property_value id="4111">
<property_id>385</property_id>
<sorting>0</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>rot-resistance</tag_name>
<value>Долговечная</value>
<description>Долговечная / Durable</description>
<list_item_id>1225</list_item_id>
</property_value>
<property_value id="4119">
<property_id>411</property_id>
<property_dir_id>0</property_dir_id>
<tag_name>status-iucn</tag_name>
<value>NT – Near Threatened (близки к уязвимому положению)</value>
<description>NT – Near Threatened (близки к уязвимому положению)</description>
<list_item_id>1272</list_item_id>
</property_value>
<property_value id="4110">
<property_id>379</property_id>
<sorting>1</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>areal</tag_name>
<value>Центральная Африка</value>
<list_item_id>1185</list_item_id>
<list_item id="1169">
<list_id>267</list_id>
<parent_id>0</parent_id>
<value>Африка</value>
<path>africa</path>
<sorting>3</sorting>
<description></description>
<color></color>
<icon></icon>
<image_large></image_large>
<image_small></image_small>
<image_small_height></image_small_height>
<image_small_width></image_small_width>
<image_large_height></image_large_height>
<image_large_width></image_large_width>
<active>1</active>
</list_item>
</property_value>
<property_value id="4112">
<property_id>385</property_id>
<sorting>1</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>rot-resistance</tag_name>
<value>Очень долговечная</value>
<description>Очень долговечная / Very durable</description>
<list_item_id>1224</list_item_id>
</property_value>
<property_value id="4497">
<property_id>371</property_id>
<value>6.89</value>
<property_dir_id>0</property_dir_id>
<tag_name>janka-hardness</tag_name>
</property_value>
<property_value id="4498">
<property_id>372</property_id>
<value>116.3</value>
<property_dir_id>0</property_dir_id>
<tag_name>modul-rupture</tag_name>
</property_value>
<property_value id="4499">
<property_id>373</property_id>
<value>13.25</value>
<property_dir_id>0</property_dir_id>
<tag_name>modul-elastic</tag_name>
</property_value>
<property_value id="4500">
<property_id>374</property_id>
<value>65.3</value>
<property_dir_id>0</property_dir_id>
<tag_name>crushing-strength</tag_name>
</property_value>
<property_value id="4501">
<property_id>375</property_id>
<value>4.8</value>
<property_dir_id>0</property_dir_id>
<tag_name>shrinkage-rad</tag_name>
</property_value>
<property_value id="4502">
<property_id>376</property_id>
<value>8.1</value>
<property_dir_id>0</property_dir_id>
<tag_name>shrinkage-tan</tag_name>
</property_value>
<property_value id="4503">
<property_id>377</property_id>
<value>12.6</value>
<property_dir_id>0</property_dir_id>
<tag_name>shrinkage-vol</tag_name>
</property_value>
<property_value id="13936">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t11.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t11.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>0</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="429175" width="1636" height="1440">nauclea-diderrichii-t11.jpg</file>
<file_small size="5400" width="240" height="212">small_nauclea-diderrichii-t11.jpg</file_small>
</property_value>
<property_value id="13937">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t12.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t12.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>1</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="515766" width="1636" height="1440">nauclea-diderrichii-t12.jpg</file>
<file_small size="6158" width="240" height="212">small_nauclea-diderrichii-t12.jpg</file_small>
</property_value>
<property_value id="13938">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t13.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t13.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>2</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="448152" width="1920" height="1291">nauclea-diderrichii-t13.jpg</file>
<file_small size="4349" width="240" height="162">small_nauclea-diderrichii-t13.jpg</file_small>
</property_value>
<property_value id="13939">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t14.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t14.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>3</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="765865" width="1920" height="1259">nauclea-diderrichii-t14.jpg</file>
<file_small size="6636" width="240" height="158">small_nauclea-diderrichii-t14.jpg</file_small>
</property_value>
<property_value id="13940">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t15.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t15.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>4</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="812948" width="1920" height="1396">nauclea-diderrichii-t15.jpg</file>
<file_small size="10291" width="240" height="175">small_nauclea-diderrichii-t15.jpg</file_small>
</property_value>
<property_value id="13941">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t21.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t21.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>5</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="340151" width="1920" height="900">nauclea-diderrichii-t21.jpg</file>
<file_small size="3532" width="240" height="113">small_nauclea-diderrichii-t21.jpg</file_small>
</property_value>
<property_value id="13942">
<property_id>381</property_id>
<file_name>no-image-1080x540.png</file_name>
<file_description>Фото нет</file_description>
<file_small_name>no-image-1080x540.png</file_small_name>
<file_small_description></file_small_description>
<sorting>6</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="3906" width="1080" height="540">no-image-1080x540.png</file>
<file_small size="3406" width="240" height="120">small_no-image-1080x540.png</file_small>
</property_value>
<property_value id="13943">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t23.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t23.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>7</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="132221" width="1321" height="1189">nauclea-diderrichii-t23.jpg</file>
<file_small size="4485" width="240" height="217">small_nauclea-diderrichii-t23.jpg</file_small>
</property_value>
<property_value id="13944">
<property_id>381</property_id>
<file_name>nauclea-diderrichii-t24.jpg</file_name>
<file_description>Древесина Билинги (Nauclea diderrichii)</file_description>
<file_small_name>nauclea-diderrichii-t24.jpg</file_small_name>
<file_small_description></file_small_description>
<sorting>8</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="599595" width="1920" height="1102">nauclea-diderrichii-t24.jpg</file>
<file_small size="5140" width="240" height="138">small_nauclea-diderrichii-t24.jpg</file_small>
</property_value>
<property_value id="13945">
<property_id>381</property_id>
<file_name>no-image-1080x540.png</file_name>
<file_description>Фото нет</file_description>
<file_small_name>no-image-1080x540.png</file_small_name>
<file_small_description></file_small_description>
<sorting>9</sorting>
<property_dir_id>0</property_dir_id>
<tag_name>foto-timber</tag_name>
<file size="3906" width="1080" height="540">no-image-1080x540.png</file>
<file_small size="3406" width="240" height="120">small_no-image-1080x540.png</file_small>
</property_value>
</shop_item>
<shop_currency id="1">
<name>р.</name>
<code>RUB</code>
<exchange_rate>1.000000</exchange_rate>
<sign>р.</sign>
<sign_position>0</sign_position>
<decimal_separator>.</decimal_separator>
<thousands_separator> </thousands_separator>
<hide_zeros>0</hide_zeros>
<date>2018-05-19</date>
<default>1</default>
<sorting>1</sorting>
</shop_currency>
<shop_measure id="2">
<name>кг</name>
<description>килограмм</description>
<okei>166</okei>
</shop_measure>
<shop_company id="3">
<name>wood-base.ru</name>
<description>wood-base.ru</description>
<image></image>
<tin></tin>
<kpp></kpp>
<psrn></psrn>
<okpo></okpo>
<okved></okved>
<legal_name></legal_name>
<accountant_legal_name></accountant_legal_name>
<guid>2C2C6E4E-DBA8-D63C-DD2B-343C6F2B9FD2</guid>
<sorting>0</sorting>
</shop_company>
<size_measure id="2">
<name>м</name>
</size_measure>
</shop>
property_value[property_id = 411]
Вот этот блок в XML:
<property_value id="4119">
<property_id>411</property_id>
<property_dir_id>0</property_dir_id>
<tag_name>status-iucn</tag_name>
<value>NT – Near Threatened (близки к уязвимому положению)</value>
<description>NT – Near Threatened (близки к уязвимому положению)</description>
<list_item_id>1272</list_item_id>
</property_value>
Как видим в нем нет тегов изображений к которым вы пытаетесь получить доступ. Но у вас есть list_item_id через который вы можете получить вот это:
<list_item id="1272">
<list_id>280</list_id>
<parent_id>0</parent_id>
<value>NT – Near Threatened (близки к уязвимому положению)</value>
<path>nt-near-threatened-blizki-k-uyazvimomu-polozheniyu</path>
<sorting>6</sorting>
<description>NT – Near Threatened (близки к уязвимому положению)</description>
<color></color>
<icon></icon>
<image_large>status-iucn-6-NT-b.png</image_large>
<image_small>small_status-iucn-6-NT-b.png</image_small>
<image_small_height>129</image_small_height>
<image_small_width>480</image_small_width>
<image_large_height>513</image_large_height>
<image_large_width>1920</image_large_width>
<active>1</active>
<dir>/upload/lists/list_280/1/2/7/item_1272/</dir>
</list_item>
собственно сам элемент с нужными вам изображениями.
Вы только что начали читать предложение, чтение которого вы уже заканчиваете.
Спасибо!
Сделал вроде бы всё как надо:


В чём моя ошибка?
Сделал вроде бы всё как надо:
<xsl:if test="//property_value[property_id = 411]/value != 0">
<...>
<xsl:if test="//list/list_item[list_id = 280]/value != ''">
<xsl:apply-templates select="property_value[property_id = 411]/list_item_id" />
</xsl:if>
</xsl:if>
</xsl:when></xsl:choose>
</xsl:template>
<xsl:template match="//list_item_id">
<img class="img-fluid" src="{//list/list_item[list_id = 280]/dir}{//list/list_item[list_id = 280]/image_small}" alt="{property_value[property_id = 411]/value}" />
</xsl:template>
<...>
<xsl:if test="//list/list_item[list_id = 280]/value != ''">
<xsl:apply-templates select="property_value[property_id = 411]/list_item_id" />
</xsl:if>
</xsl:if>
</xsl:when></xsl:choose>
</xsl:template>
<xsl:template match="//list_item_id">
<img class="img-fluid" src="{//list/list_item[list_id = 280]/dir}{//list/list_item[list_id = 280]/image_small}" alt="{property_value[property_id = 411]/value}" />
</xsl:template>
...но почему-то выводится первая попавшаяся картинка из этой серии

а не нужная

В чём моя ошибка?
Авторизация