Julio

Results 17 comments of Julio

Another option, could be to provide `Double/intoParts` that returns the sign, exponent, and mantissa in a record (possibly within a union to handle Inf and NaN). Then all formatting logic...

@Gabriella439 This is ready for a first pass review. I checked the hydra logs and it failed with ``` Error: Unbound variable: List/drop 4│ List/drop ``` Which I think means...

Both [`tomland`](https://hackage.haskell.org/package/tomland-1.3.3.0/docs/Toml-Codec-Combinator-Time.html) and [`toml`](https://hackage.haskell.org/package/toml-0.1.3/docs/Text-TOML-Value.html) haskell packages use the [`time`](https://hackage.haskell.org/package/time-1.9.3/docs/Data-Time.html) package, where the types are records. For example [`UTCTime`](https://hackage.haskell.org/package/time-1.9.3/docs/Data-Time-Clock.html#t:UTCTime) is: ```haskell data UTCTime = UTCTime { -- | the day utctDay...

@Gabriella439 > What do you mean when you say that this also affects List/index? I was just making a note that `List/index` calls `List.drop` so it also has the same...

What's the status of this issue? I could take it over if you have your hands full.

Reopening bc#631 is a temporary solution. We would like to implement a go-spatial logger at some point in the future

After talking to @jj0hns0n it looks like we should add support for [OGC API tiles](http://docs.opengeospatial.org/DRAFTS/19-zzz.html). It looks like: ``` { "description": "OGC API Tiles", "links": [ { "href": "http://tiles.example.com/maps/{tileMatrixSetId}/{tileMatrix}/{tileCol}/{tileRow}.pbf", "rel":...

This is a really cool feature! Thanks for getting it started! WRT to input validation I think the best approach is to use the "placeholder" mechanism offered by pgx (it's...

Do you have a WKT string test case for this? As far as I've read, [the spec](https://www.opengeospatial.org/standards/sfa) does not specify any unicode characters, which is why the `Decoder` can/does read...