michikawa07

Results 12 comments of michikawa07

It seems that only `show(x::Quantity, etc.)` are defined on Unitful.jl, and `string(x::Quantity)` are not defined. Implicitly, `string` calls `print` and `print` calls `show`, so `string` and `show` are currently identical....

> For example, in UnitfulAtomic.jl there is a unit UnitfulAtomic.ħ_au that is printed as ħ. However, uparse("ħ") evaluates to Unitful.ħ (which is a quantity in J*s, not a unit), not...

@MartinOtter You have encouraged me to complete the package to the point where I am satisfied with it. This is in the process of registering it as an official package,...

I have created a package that looks like this https://github.com/michikawa07/UnitfulParsableString.jl I also have a pull request for the contents of this package.

>It is just an extremely sensible default, and the only sensible default, as we would never want the output to have a different unit than the input by default. I...

I think following issue is related. #214 #388 #391 #412 #435

Thank you for your comment. I think I understand your points and arguments. (Thanks for the examples.) I generally agree that the behavior of `show(1m/s)` should be changed. However, the...

It be okay, I'm a little busy right now, so it would be great if you could do it.

@sostock @rafaqz @c42f I am working on this problem (cf. #412, #569). My implementation is based on this proposal, https://github.com/PainterQubits/Unitful.jl/issues/214#issuecomment-714911511 One example is here. Is my approach correct? ```julia function...

@akriegman Do you have a pull request? Or do you plan to do so?