Get the outer rectangle from GeoJSON, WKT, WKB
Go to file
tidwall f6c7ae3113 Upgrade gjson 2021-12-08 16:23:37 -07:00
LICENSE.md first commit 2016-10-06 07:11:15 -07:00
README.md first commit 2016-10-06 07:11:15 -07:00
go.mod Upgrade gjson 2021-12-08 16:23:37 -07:00
go.sum Upgrade gjson 2021-12-08 16:23:37 -07:00
grect.go first commit 2016-10-06 07:11:15 -07:00
grect_test.go first commit 2016-10-06 07:11:15 -07:00

README.md

GRECT

Quickly get the outer rectangle for GeoJSON, WKT, WKB.

	r := grect.Get(`{
      "type": "Polygon",
      "coordinates": [
        [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0],
          [100.0, 1.0], [100.0, 0.0] ]
        ]
    }`)
	fmt.Printf("%v %v\n", r.Min, r.Max)
	// Output:
	// [100 0] [101 1]

Contact

Josh Baker @tidwall

License

GRECT source code is available under the MIT License.