logstash-filter-wkt_repair 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/DEVELOPER.md +6 -0
- data/README.md +9 -1
- data/logstash-filter-wkt_repair.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d55eb4d11ada67b701d6c688b2d253ae535f1881e2bdeb4d43355568ce241e92
|
4
|
+
data.tar.gz: 6c4458247d7c4ec984fb306322fa04ed7e876c04e87f56ab6d75adbf2aef5f44
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 112a258dad8495590e98a2f1f2a305dda4e3044f3b4bec12732dd2d2baf949623266ffa35fa336323867b0927e81c9933238f222ddac0901901ff651a0ccc589
|
7
|
+
data.tar.gz: '08f3b320cdf794ef6445ec3350b65cbeb5aed704b146c09c7ab6ddeed30a786cc857ad21bcf7c4750884675220a32be231a4563a3635813a999d0bfc7b404db2'
|
data/DEVELOPER.md
CHANGED
@@ -46,4 +46,10 @@ bin/logstash-plugin install /your/local/plugin/logstash-filter-wkt_repair.gem
|
|
46
46
|
```
|
47
47
|
- Start Logstash and proceed to using/testing the plugin
|
48
48
|
|
49
|
+
### 3. Installing the plugin from rubyGems
|
50
|
+
- To install the plugin from rubyGems
|
51
|
+
```sh
|
52
|
+
bin/logstash-plugin install logstash-filter-wkt_repair.gem
|
53
|
+
```
|
54
|
+
|
49
55
|
For walk through of developing Logstash filter plugin see https://www.elastic.co/guide/en/logstash/current/_how_to_write_a_logstash_filter_plugin.html
|
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# WKT Repair Logstash Filter
|
2
2
|
|
3
|
-
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/logstash-filter-wkt_repair.svg)](https://badge.fury.io/rb/logstash-filter-wkt_repair)
|
4
|
+
|
5
|
+
Repairs WKT Polygons/Multipolygons on a Logstash event that are ambiguous or ill-defined and returns a coherent and clearly defined output.
|
4
6
|
|
5
7
|
Examples of ambigous or ill-defined polygons include, but not limited to:
|
6
8
|
|
@@ -96,4 +98,10 @@ bin/logstash-plugin install /your/local/plugin/logstash-filter-wkt_repair.gem
|
|
96
98
|
```
|
97
99
|
- Start Logstash and proceed to using/testing the plugin
|
98
100
|
|
101
|
+
### 3. Installing the plugin from rubyGems
|
102
|
+
- To install the plugin from rubyGems
|
103
|
+
```sh
|
104
|
+
bin/logstash-plugin install logstash-filter-wkt_repair.gem
|
105
|
+
```
|
106
|
+
|
99
107
|
For walk through of developing Logstash filter plugin see https://www.elastic.co/guide/en/logstash/current/_how_to_write_a_logstash_filter_plugin.html
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'logstash-filter-wkt_repair'
|
3
|
-
s.version = '0.1.
|
3
|
+
s.version = '0.1.7'
|
4
4
|
s.licenses = ['Apache-2.0']
|
5
5
|
s.summary = 'Logstash filter to repair a WKT shape data.'
|
6
6
|
s.description = 'It takes ambigous or ill-defined polygons and returns a coherent and clearly defined output.'
|