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
4
votes
2 answers

HTTP Request in Swift with POST method in swift3

I'm trying to run a HTTP Request in Swift3, to POST 2 parameters to a URL. Example: Link: http://test.tranzporthub.com/street45/customer_login.php Params: { "user_id":"chaitanya3191@gmail.com", "password":"123" } What is the simplest way…
mike kumawat
  • 165
  • 1
  • 2
  • 8
4
votes
2 answers

Sending raw binary and data with cURL

I'm trying to send in POST a raw binary file together with some other data using cURL. Basically, I did that: //Here i create the CURLFile $cfile = new CURLFile($fullpath,'application/xml', $filename); //Data to upload (including the…
greg
  • 433
  • 5
  • 12
4
votes
1 answer

can the python PIL deal with raw image data?

I have an raw image file that is .bin and is composed of 16 bits unsigned intergers. Can the python imaging library take this type of file and process it? My code is not running properly and giving me an invalid file type error but I think it may…
clifgray
  • 4,313
  • 11
  • 67
  • 116
3
votes
2 answers

How to do add DataFrames to Excel workbook in a for loop?

I have a list of lists (sub-lists) where each sub-list is a set of characters. The list came from a text fie of data with consecutive sample data aligned vertically. Here is a sample: "" "Test Method","Generic Stuff.msm" "Sample I. D.","sed do…
3
votes
1 answer

How to test raw loaded data with React

I need to load javascript raw data from a .js file. I have this helper to do such thing: import { reduceFunctionGarbage } from "./reduce-function-garbage"; // eslint-disable-next-line import/no-webpack-loader-syntax export const…
Jose A. Ayllón
  • 866
  • 6
  • 19
3
votes
1 answer

How to get raw data(Heart Rate etc) from samsung gear s3 in Android

I want to buy Samsung Gear S3 for development. I want to use raw data that Gear S3 has. I searched many sites, but I couldn't find how to get raw data from Gear S3 in Android using BLE. Any help please?
최민수
  • 43
  • 1
  • 5
3
votes
1 answer

How to post raw data in swift 3?

If I post raw data using Postman, response is coming. I am using this code var dict = Dictionary() dict = ["user_id" :userid as AnyObject, "type" :type as AnyObject, "complaint_id" :complaintId as AnyObject, "auth_code" : authCode as…
Deepak Chaudhary
  • 1,723
  • 1
  • 15
  • 29
3
votes
1 answer

Pipe from python to aplay

I'm trying to generate sound via piping the output for python to aplay like this: python test.py | aplay My python code looks like this: for i in range (0, 1000): for j in range (0, 256): print(chr(j), end="") Because the way aplay…
Balázs Sáros
  • 495
  • 6
  • 12
3
votes
3 answers

Is there any possibility to extract Google Analytics data and post that to Elastic Search?

I have been working on ways to import Google Analytics raw data without having to use a premium account .So far this is the nearest link to what I want to do How to extract data from Google Analytics and build a data warehouse (webhouse) from…
user2582604
  • 39
  • 1
  • 5
3
votes
2 answers

How do I convert raw camera data into a Bitmap on Android

I obtain raw camera data rawData of type byte[], format RGBA, size 640x480, 4 bytes per pixel, from a library function. And I need to convert it to a Bitmap and display in an ImageView on the screen. What I do is the following: byte[] JPEGData =…
3
votes
1 answer

What could be the purpose of a header file with raw data?

Decided to check out some code other than my own, Quake I was the choice. The first file I click on is filled with nothing but raw data and the only comments are the GPL. I am guessing it is an array containing normal vectors? Regardless of what its…
Leonardo
  • 1,452
  • 3
  • 15
  • 26
3
votes
1 answer

Extracting audio data from FLV and injecting into MP3

I need to extract the audio data from a FLV and inject it into a MP3 with C#. So I'm look for either a library for this or how to do it with the rawdata/file structure.
Lienau
  • 1,353
  • 1
  • 20
  • 38
3
votes
2 answers

Using pcolormesh for plotting an orbit data

I am trying to map a dataset with associated latitude and longitude. The details of the data I am using are given below: Variable Type Data/Info ------------------------------- lat ndarray 1826x960, type `float64` lon ndarray …
Ishan Tomar
  • 1,488
  • 1
  • 16
  • 20
3
votes
1 answer

How to get the raw HTML source code for a page by using Ruby or Nokogiri?

I'm using Nokogiri (Ruby Xpath library) to grep contents on web pages. Then I found problems with some web pages, such as Ajax web pages, and that means when I view source code I won't be seeing the exact contents such as , etc. How can I get…
lovepong
  • 625
  • 1
  • 9
  • 19
2
votes
1 answer

Effective type in packed raw data

In order to avoid memory fragmentation on very large datasets, I have implemented a doubly linked list that avoid calling malloc twice: one malloc for the data and another one for the prev and next nodes. Instead, it allocates the required space in…
David Ranieri
  • 39,972
  • 7
  • 52
  • 94
1
2
3
13 14