2
votes
1answer
243 views

Read Values from .csv file and convert them to float arrays

I stumbled upon a little coding problem. I have to basically read data from a .csv file which looks a lot like this: 2011-06-19 ...
2
votes
1answer
75 views

Python units module for conversion between liters and milliliters not working

Using the 'units module for performing basic conversions between units. However it does not seem to be possible to perform an easy conversion between liters and milliliters...why? >>> from ...
2
votes
0answers
114 views

Python library for data conversion

I'm writing a RESTful service using Pyramid. My data is stored as SQLAlchemy models. I need to convert it to elementary data structures (such as dicts, lists, ints, etc.) so that I can further render ...
0
votes
3answers
208 views

Python: convert a dot separated hex values to string?

In this post: Python: print a string as hex bytes? I learned how to print as string into an "array" of hex bytes now I need something the other way around: So for example the input would be: ...
5
votes
2answers
2k views

Convert Latitude and Longitude to point in 3D space

I need to convert latitude and longitude values to a point in the 3-dimensional space. I've been trying this for about 2 hours now, but I do not get the correct results. The Equirectangular ...
1
vote
7answers
398 views

use type() information to cast values stored as strings

In my application I have generated a number of values (three columns, of type int, str and datetime, see example below) and these values are stored in a flat file as comma-separated strings. ...
3
votes
1answer
851 views

How to do FLAC or mpeg with python

I'm looking for python code that can convert .wav or other format to FLAC or mpeg. I hope there is one that doesn't depend on other binaries or libraries and just pure python so that it can run ...
0
votes
3answers
170 views

how to work with strings and integers as bit strings in python?

I'm developing a Genetic Algorithm in python were chromosomes are composed of strings and integers. To apply the genetic operations, I want to convert these groups of integers and strings into bit ...