# Purge Pointy Paths

<div class="page view" id="bkmrk-this-filter-deletes-"><article>This filter deletes paths which render as point only, like:

<div class="wiki-content" id="bkmrk-m-45.250809%2C91.69273">- **`m 45.250809,91.692739`** - this path contains onyl one command - a single point
- **`m 45.250809,91.692739 z` -** this path contains two commands, but only one coordinate. It's a single point, the path is closed by a Z command
- `<strong>m 45.250809,91.692739 l 45.250809,91.692739</strong>` - this path contains two commands, but the first and second coordinate are the same. It will render als point
- `<strong>m 45.250809,91.692739 l 45.250809,91.692739 z</strong>` - this path contains three commands, but the first and second coordinate are the same. It will render als point, the path is closed by a Z command

</div></article></div>