Raw data is a term for data collected from a source that has not been subjected to processing or any other manipulation, and are also referred to as primary data.
Questions tagged [raw-data]
204 questions
2
votes
1 answer
Get literal system variable path
Is there any way to get the path environmental variable as a literal string instead of expanded?
i.e.
%systemroot%\System32;%systemroot%\;etc...
instead of
C:\Windows\System32;C:\Windows\;etc...
I've tried…

Jeffrey
- 528
- 5
- 14
2
votes
0 answers
How can I access raw data from the altimeter sensor on apple watch?
I am trying to get the data from the barometric altimeter sensor on apple watch.
I tried using the apple documentation (it worked for accelerometer and gyroscope) but when I tried to use the methods documented in the CMAltimeter class, it did not…

Joy
- 19
- 1
2
votes
0 answers
Decoding Opus buffer Node JS
I am trying to decode an Opus buffer which library should I use.

Mohamed Farouk
- 957
- 1
- 13
- 29
2
votes
1 answer
How do I handle NSInlineData from Bluetooth scanning?
I want to use data that is passed through Bluetooth scan.
and I want to split and use data from NSInlineData.
I import data via Bluetooth scan as follows.
func centralManager(_ central: CBCentralManager, didDiscover peripheral: CBPeripheral,…

hoyeong kim
- 25
- 5
2
votes
2 answers
Unable to decode all information from Oracle RAW data
I have an application where I can upload files and add metadata to the file. This metadata information is stored in a database, but parts of the added information is encoded somehow (sadly I have no access to the source code).
The raw representation…

true_gler
- 544
- 6
- 23
2
votes
1 answer
Storing Lua script in Lua
I have an application written in C++ that can show, edit and run Lua scripts. This application stores everthing, including the full Lua scripts in a project file.
The problem here is that the project file's format is also a Lua file, written from…

Max Kielland
- 5,627
- 9
- 60
- 95
2
votes
1 answer
Processing raw data read from serial port with Python serial library?
I am not a Python programmer but am rather electronic circuit designer, however this time I must process some raw data sent by a microcontroller via RS232 port towards Python script (which is called by PHP script).
I've spent quite a few hours…

Chupo_cro
- 698
- 1
- 7
- 21
2
votes
3 answers
read \xHH escapes from file as raw binary in Python
I have following problem:
I want to read from file into a raw binary string :
The file looks like this (with escape characters, not binary data):
\xfc\xe8\x82\x00\x00\x00\x60\x89\xe5\x31\xc0\x64\x8b\x50\x30\x8b\x52
code used:
data =…

Symonen
- 628
- 2
- 7
- 19
2
votes
1 answer
google gcm "raw_data" payload for desktop chrome 50 beta
I am trying to send a and read message payload using the google GCM mechanism.
To send the data I am using the instructions found under "Web Push" in:
https://developers.google.com/web/updates/2016/03/web-push-encryption?hl=en
where it is…

Shai Kimchi
- 746
- 1
- 4
- 22
2
votes
2 answers
Applying "file" linux command to binary buffer in Perl
I have image in buffer after retrieving it from the Web:
my $img = $webapi->get('http://myserver.com/image/123423.jpg');
After the call, raw data is in the $img. I want to make sure the data represents image and not text, so I save it to a file on…

rlib
- 7,444
- 3
- 32
- 40
2
votes
1 answer
ruby frame a file for LengthFieldBasedFrameDecoder parameters in Netty
I have this parameters set for Netty in one API I need to send data to via TCP (SSL enabled).
LengthFieldBasedFrameDecoder(1048576, 0, 4, 0, 4))
Parameters:
maxFrameLength - the maximum length of the frame. If the length of the frame is greater…

trickymuffin
- 143
- 2
- 7
2
votes
3 answers
Importing data to SAS from a csv file
I'm working with a .csv export of a workout app. It records the date, time, exercise, reps, weight, and comments. Like many .csv files, its a little messy.
Example:
Date,Time,Exercise,# of Reps,Weight,Comments12/23/2014,14:52,Hip…

aso118
- 23
- 3
2
votes
2 answers
The raw text files that make up SQL inside data directory in Postgresql
Is there a way someone can get the text files that make up the Database I mean the raw text files that you get when you dump the db.? I am thinking the files must be somewhere inside the data directory...How can I get them?

Utawangu
- 325
- 1
- 3
- 9
2
votes
4 answers
AirPrint on iOS: how to send RAW data to a Boca printer?
I'm writing an iOS application which needs to print using a Boca thermal printer. They use a proprietary language (FGL) to layout contents with commands in form of ASCII strings. I already enabled AirPrint for the Boca printer by using the AirPrint…

Andrea Sprega
- 2,221
- 2
- 29
- 35
1
vote
1 answer
Passing raw string data in C++ to a Python program
Before simply answering "use SWIG" or "just write it to a file on disk" read this:
I have a C++ client/server program. The client requests data from the server.
The server generates data and calls various routines to check the data.
If all the data…

dulac
- 201
- 1
- 2
- 7