nepal_admin_map_test = html`<svg width="${width}" height="${height}" viewBox="0 0 ${width} ${height}" style="display:block;width:70%;height:auto;">
<path d="${path(docs_gov_np)}" fill="none" stroke="black" stroke-width="2"></path><!-- returns only first instance-->
<path d="${path(ghimire_admin3_DANG_group)}" fill="red" fill-opacity=".2" stroke="black" stroke-width="2"></path><!--doesn't work-->
<path d="${path(ghimire_admin3_DANG_find)}" fill="orange" fill-opacity=".6" stroke="black" stroke-width="2"></path><!--doesn't work-->
<path d="${path(ghimire_admin3_DANG_filter)}" fill="orange" fill-opacity=".6" stroke="black" stroke-width="2"></path><!--doesn't work-->
<path d="${path(ghimire_admin3_DANG_filter_collection)}" fill="orange" fill-opacity=".6" stroke="black" stroke-width="2"></path><!--WORKS-->
<path d="${path(GoN_DANG_find)}" fill="blue" fill-opacity=".2" stroke="black" stroke-width="2"></path><!--only one value in data set, so appears normal-->
<path d="${path(GoN_DANG_group)}" fill="purple" fill-opacity=".2" stroke="black" stroke-width="2"></path><!--doesn't work-->
</svg>`