Bootstrap: glyphicons-halflings-regular.woff2 404 not found

This problem happens because IIS does not know about woff and woff2 file mime types.To solve this problem, we can add the following lines in the web.config file.<configuration&g...

Douglas-Peucker Algorithm implementation in C#



Douglas-Peucker algorithm is an error bounded sequence simplication. It is used for compressing trajectory, roadnetwork, etc. It's main idea can be shown as the following picture [1].I implement t...