Charlie Savage

Results 86 comments of Charlie Savage

Ah - that explains it! So PROJ_LIB is the old ENV, its not PROJ_DATA (but PROJ_LIB still works). See https://proj.org/usage/environmentvars.html#envvar-PROJ_DATA. Just make sure PROJ_DATA is set right (you can't set...

Works for me here if I do this: ``` coordinate = Proj::Coordinate.new(x: 533498, y: 181201) puts coordinate v0: 51.513968813644965, v1: -0.0775306317158091, v2: 0.0, v3: 0.0 ``` If I do what...

Running the code you provided works for me. I tested on both Windows and Linux (Fedora 39). Also built and your ran your docker file (thanks for providing!): ``` docker...

Any luck tracking this down?

Glad you have a solution. The proj4 gem uses FFI, so does not include any native code (so nothing to compile) and thus is architecture independent. Of course the FFI...

Thanks for keeping at this. I do have an intel Mac, I will give that a try. That looks like a great update to the test matrix, can you create...

ActiveJob::Locking.options.hosts = ['localhost'] In the suo adapter, the code is: class SuoRedis < Base def create_lock_manager mapped_options = {connection: {host: self.options.hosts.first}, stale_lock_expiration: self.options.lock_time, acquisition_timeout: self.options.lock_acquire_time} Suo::Client::Redis.new(self.key, mapped_options) end` Notice it...

Depending on the adapter, I think you can use the host string to specify the port and/or password.

Makes sense. Happy with your idea, can you code it up?

Sorry for late response. Can you write up a patch?