Questions tagged [raw-data]

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.

204 questions
0
votes
1 answer

How to write raw audio data to a file captured using Alsa Driver C++

I'm trying to write raw audio data to a specific file, using Alsa Driver. Below the code: ofstream binaryFile ("file.raw", ios::out | ios::binary); if(inputData==NULL) { inputData = (uint8_t *)malloc(sizeOfDataInBytes); } while (audio_en) { …
0
votes
1 answer

parsing unstructured data using pyspark

I am new to Spark. I am trying to parse unstructured data with the below format. The entire dataset is in a single line. Each line/record is delimited by a special character ~$| and each column of the record is delimited by tab space. So how can I…
0
votes
1 answer

PHP Parsing ELA Temperature Sensor raw data

I have successfully converted the positive temperature data from below raw data array ( 'timestamp' => '2020-06-11T11:09:21.335Z', 'type' => 'Unknown', 'mac' => 'F64BB46181EF', 'bleName' => 'P RHT 900350', 'rssi' => -63, 'rawData' =>…
Kashyap Patel
  • 1,139
  • 1
  • 13
  • 29
0
votes
1 answer

parsing RAW data from sensor in php

I am getting data from sensor as below. array ( 'timestamp' => '2020-06-11T11:09:21.335Z', 'type' => 'Unknown', 'mac' => 'F64BB46181EF', 'bleName' => 'P RHT 900350', 'rssi' => -63, 'rawData' =>…
Kashyap Patel
  • 1,139
  • 1
  • 13
  • 29
0
votes
0 answers

How do I properly filter/print raw csv data by using regular expressions?

So I'm in this introduction to scripting class and it is moving really fast for my understanding. We're applying regular expressions and the task is to have our fellow students pretend to be a manager and ask us to come up with the regex code to…
0
votes
2 answers

Send params as raw data using alamofire in swift

I have following raw data to be sent as parameters while using alamofire in swift { "customer": { "firstname": "test", "lastname": "user", "email": "testuser30@gmail.com", "website_id": 1, "addresses": [ …
Saranya
  • 595
  • 2
  • 7
  • 19
0
votes
2 answers

How to get number of followers of an instagram page without API

I am trying to get number of followers of a page programmatically either of exact number (eg 521356) or (521K) would do. I have tried download data to download the entire page but I couldn't seem to find number of followers System.Net.WebClient wc =…
0
votes
2 answers

How to declare Excel range in VBA?

So I lost all of my VBA notes and am having issues redoing some logic here so I apologize if this looks very basic. I am trying to find set the top and find the last populated cell in a column and set them both in my range to be able to copy and…
0
votes
1 answer

How to process raw jpeg data into a file in javascript

I'm trying to create a jpeg file from raw data in javascript I've been using the google file picker api to allow users to select their images from drive and import into my application, but when I make the request to download the image google…
Nicolas Kao
  • 155
  • 1
  • 11
0
votes
1 answer

Reading XML binary data with BeautifulSoup

Good day, I am using BeautifulSoup to parse an XML file which has a tag like the sample below which contains some binary data:
skywalker
  • 37
  • 9
0
votes
0 answers

Download ftp directory content from 1000 genomes data

I have to download a bunch of sequence files stored at 1000 genomes subdirectories, which are stored at a main directory called MXL: ftp://ftp.1000genomes.ebi.ac.uk/vol1/ftp/data_collections/1000_genomes_project/data/MXL/ I tried to use the command…
0
votes
1 answer

interpreting individual bits from ESC/POS status code

I admit, that this project I am working on, is not exactly a textbook example on how to make first steps with Python, but here I am. The setup an ESC/POS printer, locally connected (ethernet, socket) with RaspberryPi, that is remotely receiving…
Tomaski
  • 487
  • 3
  • 15
0
votes
1 answer

Splunk HEC: Start sending events in JSON format with pre existing raw events

We are using Splunk Enterprise v 6.6.3. All our indexed events are raw events (logs) and we are planning to use Splunk HEC and send the events in JSON format. My question: does sending the new events in JSON format affect everything that we have…
Hadi Al Tinawi
  • 429
  • 7
  • 22
0
votes
1 answer

how to collect raw data using google analytics

I want to use google analytics to collect raw data send from a mobile game that I'm currently developing under unity, the game is an endless runner and I want to collect the "player_score" and the "level_name" each time the game ends. so inside my…
Toufik ID
  • 50
  • 6
0
votes
1 answer

How could I read .raw file in Unity?

I have downloaded some .raw file of depth data from this website. 3D Video Download In order to get a depth data image, I wrote a script in Unity as below: However, this is the texture I got. How can I got the depth data texture as below?
Kevin Hsiao
  • 2,281
  • 2
  • 10
  • 18