Units of Measure are compile-time attributes that can be associated with numeric values, typically used to indicate length, volume, mass, and so on. The compiler verifies arithmetic relationships of values across the numeric computations to have the proper units, therefore preventing programming ...
0
votes
0answers
14 views
WPF: Editable ComboBox and StringFormat
(First of all, I simplified the sample for you to understand.)
I want a editable ComboBox that shows values in inches. The original (source) value is a value in pixels (DIPs), because this is the ...
1
vote
2answers
28 views
different units and design of datastructure
I am trying to write a program that calculates nutrition level in food.Suppose I have this data(may be incorrect)
10 grams of bread has 68 mg sodium.
1 medium slice is 50 grams.
1 cup of milk has 98 ...
1
vote
1answer
23 views
JFreeChart LogAxis Frequency/Resistance multipliers
I'm trying to figure out how to dynamically format the values on the axes of my line chart based on the multiplier.
I'm using LogAxis for both the X and Y axes, as follows:
final LogAxis rangeAxis ...
0
votes
2answers
57 views
is this code transferring 1kb or in bits ? a little confused
i have been trying to test network performance, but have a question
static public void main(String[] args)
{
MPI.Init(args);
int myrank = MPI.COMM_WORLD.Rank();
int tag = 99;
int ...
1
vote
1answer
65 views
Standard Unit Conversion Tables
I've been tasked with looking into some issues regarding errors with unit conversions (Meters to Feet for example). Is there a definitive source for standard conversion numbers? I would like the ...
-1
votes
1answer
46 views
Units in Itunes Connect [closed]
I am trying to research the difference between a 'unit' and a 'total' while tracking my sales in Itunes Connect. How do they differ from each other, what are they?
1
vote
0answers
83 views
How to get the list of F# type abbreviations via reflection? [duplicate]
How can I get a list of the F# type abbreviations via reflection? Assembly.GetTypes doesn't return them, and I don't see anything for that in Microsoft.FSharp.Reflection. I'm trying to get all the ...
8
votes
4answers
128 views
How should I markup units of measurement in HTML5? (Centimetres, grams, etc.)
I markup a table which contains values with units of measurement.
I thought about how to mark up the document for the best accessibility.
Is it important to respect variable values and constant names ...
0
votes
0answers
52 views
Library for parsing strings containing units
I'm looking for a C++ library which can parse user-provided strings such as the following:
25 meters/day
3.4 light-years/s
10 cm^3 yr^-1
And return these as objects which can be added, multiplied, ...
0
votes
1answer
109 views
OGR Distance Units
I am using OGR Distance in Python to determine the shortest distance between a point and a line. My results are completely different then the ones I get using QGIS. I assume the units OGR uses depend ...
3
votes
1answer
66 views
Parse Python String for Units
Say I have a set of strings like the following:
"5 m^2"
"17 sq feet"
"3 inches"
"89 meters"
Is there a Python package which will read such strings, convert them to SI, and return the result in an ...
1
vote
2answers
129 views
BNF Grammar for units of measurement
I'm using ParseKit to parse units of measure. In order to do this I have to supply a grammar. I tried googling but that didn't get me far. While it is a fun exercise on my own I want to make sure I ...
0
votes
1answer
178 views
How do I match lomb-scargle and FFT plots of same dataset?
I am doing some work, comparing the interpolated fft of the concentrations of some gases over a period, of which is unevenly sampled, with the lomb-scargle periodogram of the same data. I am using ...
2
votes
2answers
93 views
Electricity units calculator
I'm basically using functions and if else if statements to build an electricity reading calculator.
The units given is 1236 which is a parameter of the function called elecReading. This will be used ...
0
votes
1answer
58 views
A good strategy to store units of measurement in Core Data in iOS project
I am writing an application that keep track of length and height of a certain item. In essence, I would like to make the app to support both metric and imperial measurement system. My current strategy ...
0
votes
1answer
262 views
Google static maps lat/lng distance measurement
I am using the Google Static Maps API to download a satellite image given a lat/long pair. That's easy enough.
What I can't figure out from the documentation is what the relationship is between zoom ...
0
votes
1answer
49 views
sympy units conversion
I have a little problem with units in sympy.
If i do following expression:
import sympy.physics.units as u
print u.kg + u.kg
I get as result:
2*kg
which is not what I want, I would like to have ...
0
votes
1answer
59 views
RegExp to get unit from matrix strings
Say we've some strings like these and need the unit from them:
'rotate(90deg)' // 'deg'`
'rect(0 0 5px 5px)' // 'px'
'rgba(0, 0, 0, 0.5)' // ''
How can i accomplish that?
0
votes
2answers
35 views
Define and calculate Apples definition of the unit point
http://developer.apple.com/library/ios/documentation/userexperience/conceptual/mobilehig/UEBestPractices/UEBestPractices.html#//apple_ref/doc/uid/TP40006556-CH20-SW20
Apple writes in the user ...
0
votes
1answer
238 views
Phonegap using pt instead of px
I'm currently working on a PhoneGap app and I'm testing it on an Android Samsung Galaxy S2 but I want to target Android and iOS.
I want a fixed header and according to ...
0
votes
1answer
97 views
measurement tool (area calculation) not working properly in map
I have create a simple measurement tool in esri sample maps with all other functionality using javascript. But measurement tool area calculation displays the wrong calculation .
However the ...
1
vote
2answers
91 views
Persisting Units of Measurement in JPA
This is in continuation with this question I asked a yesterday. After going through various resources and consulting people, I was not able to find any JPA annotations supporting API, for mapping ...
11
votes
2answers
205 views
Is there any available API to represent various units of item like KG, Litre, Metre, KM, etc
In my project, somewhere I have to work with a unitOfIssue of Items. Now, various items of course can have different units of representation. So, I was searching for some API or some way, to elegantly ...
5
votes
1answer
154 views
f# generic units over generic types
Is it possible to define a function that is both generic over data type and unit of measure? E.g., what I would like to do, but doesn't compile (though it wouldn't even without units of measure ...
2
votes
2answers
121 views
single and double cannot be augmented with a Measure
Does anyone know why the [< Measure>] type only augment some algebraic types?
That so many useful types cannot be augmented with a Measure looks strange to me.
type FooType =
| FooByte of ...
4
votes
1answer
126 views
How do I know the measurement units corresponding to a given locale?
I'd like to display length in a locale-dependent way, i.e.: show the length in the correct measurement unit for the current locale. I know LC_MEASUREMENT is what I need to use, however how do I use ...
6
votes
2answers
308 views
Converting from m/s to km/h using F# Units of Measure
I'm in the process of learning F# - and is currently looking into Units of Measure. I have a simple calculation returning meters per second, and I want to introduce a function converting it to ...
7
votes
2answers
129 views
Is there a PHP library/class for manipulating units & quantities?
I am looking for a PHP library/class to manipulate units and quantities in a similar way to what the ruby-units gems does. I have found a port of that Ruby library to JavaScript called js-quantities, ...
1
vote
2answers
157 views
Converting string to 'physical quantity' object in Python [closed]
In this question "unit(s)" refers to "unit(s) of measure" used in physical quantities.
I want to safely parse an untrusted user input string containing physical quantities (e.g. '23 kg'). I'd like to ...
1
vote
2answers
105 views
Creating a list with multiple units of measurements of floats in F#
So, I've tried to get around this in various ways, but I just can't make this work.
Is there any way to make a list that contains values of varying units of measurement (all based on floats)? For ...
5
votes
3answers
2k views
How do I convert pt to sp?
I am a visual designer, working on an android design and I"m trying to spec my PSD file for our engineers. I cannot seem to find any documentation regarding the conversion of point size to SP for the ...
-1
votes
1answer
69 views
Installing a complete package into Mathematica
I tried to download a complete package with documentation and tutorials (it's called "automaticUnits" - http://library.wolfram.com/infocenter/MathSource/7655/). I believe I can make the functions ...
2
votes
1answer
165 views
GeoDjango polygon area
I have implemented GeoDjango using postgis.
Here is my model:
...
geometria = models.PolygonField(srid=4326, null=True)
...
When I call data.area it returns a float, but I don't have any ...
-1
votes
1answer
74 views
DistanceMeasure type of data in Java Mahout library
I've written a code to cluster a group of data in Java. I am using Apache Mahout to build clusters. Here is the piece of my code:
Configuration conf = new Configuration();
Path input ...
6
votes
1answer
197 views
F# Units of Measurement modeling metric prefix (micro, milli, nano)
As per this question: Fractional power of units of measures in F# there are no fractional powers supported for units of measure in F#.
In my application, it is beneficial to think of data with a ...
4
votes
1answer
117 views
Abstract class for different type of units
i have different classes representing differents units (volume, weight, distance), with an enum with a value for storing the conversion values to a base type.
The problem is that there is a lot of ...
5
votes
1answer
139 views
Is there a reason not to use unit enforcing types?
Conceptually it seems to me that using unit enforcing based types (Meters, Seconds, Kilograms) would have massive benefits (extra checking in passing args, getting rid of unit names in vars, etc) and ...
1
vote
0answers
34 views
Java units of measurement libraries other than JSR-275 and Units of Measure API
Are there any Java libraries dealing with units of measurement except for JSR-275 (rejected and abandoned) and Units of Measure API (which doesn't seem to have any production-quality implementations)?
...
1
vote
3answers
69 views
How to define convenient unit of measurement syntax in CoffeeScript?
In this example of using Groovy, the author describes how one can use Groovy tricks to define a syntax for units of measurements, such that you can write, e.g.,
3.cm + 12.m * 3 - 1.km
and have it ...
1
vote
1answer
397 views
Add unit of measurement to magento front end
I would like to add a unit of measurement to my magento front end additional information. At the moment it is currently:
Length: 34
Height: 50
Weight: 13
The customer has no idea if it is ...
3
votes
4answers
751 views
Convert .width() in px to % in jQuery for Bootstrap's appended labels while fluid
I currently have:
jquery
$(document).ready(function () {
$('.span-fix').each(function(){ /* Do this for each extended input */
var wide = $(this).width(), /* create a variable that ...
3
votes
3answers
653 views
How do you strip the unit from any number in SASS?
I know you can strip units from numbers in SASS when you know the unit before-hand like this:
$number: 16px;
$without-unit: 16px / 1px;
@warn $without-unit; // 16
But is it possible to strip the ...
0
votes
1answer
647 views
Paint.setTextSize() takeing sp. designer supplying pt dimension
So I got this font that must be used at a size of 9 pt in my app. This is what my designer, an Android illiterate, is telling me. No problem:
9 pt = (1 / 72) * 9 = 1 / 8 in.
@ 285 dpi, this means 9 ...
3
votes
2answers
122 views
How do units flow through matrix operations?
It seems that there are many useful applications for matrix math where not all entries in a given matrix share the same units. I want to look into type systems that could track these units and ensure ...
36
votes
6answers
9k views
Should I use px or rem in my css?
I am designing a new website and I want it to be compatible with as much browsers and browsersettings as possible. I am trying to decide what unit of measurement I should use for the sizes of my fonts ...
0
votes
0answers
40 views
Working with non-standard units in JSR-275 or Eclipse UOMo
I need to work with volt-ampere reactive in an application using JSR-275 (but could move to another similar API if needed, e.g. Units of Measurement API). Unfortunately, it isn't included in UCUM. ...
0
votes
1answer
624 views
Which unit of measurement does the Paint.setTextSize(float) use?
I want to draw text with an specific height(in pixels) on a view using Canvas. Can you simply use Paint.setTextSize(float) with the number of pixels or is this using dp or sp?
-4
votes
1answer
67 views
what's the mean of “This is in 1/20th of a point.”? [closed]
this is in the apache POI export Excel document ,I Don't know this sentence mean "This is in 1/20th of a point.";
who can help me!
I know in this sentence "1/20th" th is length unit,but I Don't know ...
5
votes
4answers
258 views
Fractional power of units of measures in F#
Is it true to say that : there are no fractional power units in F#
1
vote
1answer
102 views
Units of measures and statistical models with F#
For a statistical model, if I want to use units of measure consistently, I need to encode somewhere the number of data I have.
type DataSet<[<Measure>] 'x, [<Measure>] 'y, ...



