Tim Finer

Results 22 comments of Tim Finer

I am having the same problem as others, I know that a lot of this is duplicating what others said, but I really wanted to make sure why the current...

I will try this route out, I already have a homebrew install of Qt5. Thank you for all the information too.

Thank you for all the info, much appreciated.

Thank you for the workaround. But... changing to 3857 isn't great. I am connecting to a service that is natively in EPSG 4326. Switching to 3857 induces a noticeable delay...

I'm having the same trouble. It looks like cpptoml can parse inline tables, but cannot write them out? I tried setting the is_inline to true when I called make_table_array, but...

More information: I was able to inspect debug using chrome and I see that ept: ` const ept = protopath_1.normalize(options.ept); if (!ept.endsWith('/ept.json')) { throw new types_1.HttpError(400, 'Invalid EPT path -...

OK, I can see what's going on here, it looks like ept tools is using filesystem function in path.js called normalize. This doesn't seem like the right thing to do...

@adah1972 If you are saying that the logging library should not have static variables, then we are in agreement. If the library needs some static state, then it should offer...

How I solved it without altering spdlog code, I have logging statements in the constructors and destructors, via pseudocode: all of this is in main: ``` main try init logging...