Andy Nowacki

Results 22 issues of Andy Nowacki

Trying to resample a signal to its original rate (i.e., with `rate = 1` leads to an error in `normalize_freq` if `rate` is an `Integer` or `Rational`: ```julia julia> using...

### String formatting with C (`sprintf1()`) and Python (`fmt()`) styles Using string output of any kind, with any formatter, only outputs the result of calling `show()` on irrational numbers: ```julia...

This is a very draft implementation of great circle calculations for Geodesy. Suggestions for improvement very warmly welcomed. There are a number of things which need to be addressed before...

Currently, no check is done on the range of values when either constructing or converting `LLA`s or `LatLon`s: ```julia julia> using Geodesy julia> p = LLA(lat=1000.0, lon=1000.0, alt=0.0) LLA(lat=1000.0°, lon=1000.0°,...

I am not a geodesist (just a geophysicist), but have a currently unregistered package, [Geodesics.jl](https://github.com/anowacki/Geodesics.jl) which only implements Vincenty's algorithm to compute great circle distances and forward and backazimuths on...

When distributing software using the GNU autotools system, it is usual to also distribute the `configure` script so that end-users don't need to install the whole autotools system themselves. Currently...

Great to see all the progress with SeisIO! I was wondering—are 32-bit platforms supported by SeisIO? Or are they explicitly not supported? I ask because I am experimenting with using...

feature request

There are many things exported from NanoDates.jl that seem somewhat curious. For example, I don't understand why a user would need to have `CapitalT` (`'T'`) exported. Likewise for many others....

In some cases when `filt(::FIRFilter{FIRArbitrary}, x)` is called with certain values of `x`, the buffer is actually one sample too short and a `BoundsError` is thrown in `filt!(buffer, ::FIRFilter{FIRArbitrary}, x)`....

This is a draft PR to hold progress in implementing plotting with Makie via package extensions Once feature parity with the old Plots interface is complete, this will be merged.