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.

180 questions
19
votes
4 answers

Google Analytics - Getting raw data logs

I have an app that sends data to Google Analytics. I am interested in accessing and storing this data on a Hadoop cluster. I am guessing this raw data will be in the form of logs. In particular, I would like to see the user_id, the searches made by…
17
votes
6 answers

R generate 2D histogram from raw data

I have some raw data in 2D, x, y as given below. I want to generate a 2D histogram from the data. Typically, dividing the x,y values into bins of size 0.5, and count the number of occurrences in each bin (for both x and y at the same time). Is there…
Vahid Mirjalili
  • 5,363
  • 15
  • 47
  • 73
16
votes
2 answers

Google Drive raw data?

Is there any URL google has that contains the raw data for the file? using https://drive.google.com/file/d/FILE_ID just takes you to a 'share' section of the file... say I have a .js file on GDrive. If you go to their share link, they have a share…
parzivail
  • 171
  • 1
  • 1
  • 8
10
votes
2 answers

How to get attr with raw entities?

I have data attr on my tag. Data attr has HTML entity in it. I can get content of that attr with data method from jQuery. However, HTML entity is modified and instead of getting — I get —. How to get the raw content? JsFiddle demo.
daGrevis
  • 19,600
  • 35
  • 95
  • 134
8
votes
3 answers

Is It More Efficient to Put Raw Image Data in the Src Attr?

I recently found out that the src attribute of an image allows you to put raw base 64 image data straight into it. Am i right in supposing this is technically more efficient than a separate image file as additional requests for the images don't…
Thomas Shields
  • 8,598
  • 5
  • 39
  • 77
8
votes
1 answer

WebTestCase Phpunit send raw data not working

I try to send raw data in my WebTestCase in PhpUnit and it doesn't work : $jsonEvent = '{ "type": "invoice.payment_succeeded", }'; $this->client->request( 'POST', '/api/v1/stripe/webhook', [], [], ['CONTENT_TYPE' =>…
psylo66
  • 558
  • 9
  • 24
8
votes
1 answer

Webservice dynamic invoke + get raw data

I use the following code to invoke a webservice from wsdl dynamically, which is working perfectly:(see docs) Now I want to have the raw data from the response. I found the following: (Docs) But to use that example I need a place to add the method…
TWT
  • 2,198
  • 1
  • 16
  • 32
7
votes
1 answer

How to send raw data to printer with Java

I am trying to create a simple program that sends a string to a printer to print. This is what my program looks like: import javax.print.Doc; import javax.print.DocFlavor; import javax.print.DocPrintJob; import javax.print.PrintException; import…
aCarella
  • 2,032
  • 7
  • 41
  • 75
5
votes
3 answers

Vim modifying a file if used with xxd

I'm trying to understand how ID3 tags work, so, after reading some documentation, I started to look at some mp3's raw data. Vim is usually my editor of choice, so, after some googling, I found out I could use xxd to see an hex representation of my…
gcali
  • 988
  • 1
  • 14
  • 25
5
votes
2 answers

Save pdf to local server

I am creating a PDF file from raw binary data and it's working perfectly but because of the headers that I define in my PHP file it prompts the user either to "save" the file or "open with". Is there any way that I can save the file on local server…
Salman
  • 125
  • 2
  • 2
  • 9
5
votes
1 answer

How to store firmware file into header file (.h)

I have got a firmware (.raw) file which has to be written in serial flash. One way is to create a header file out of it i.e. a string array with the file content and then in code read this buffer and write it in serial flash. In linux do we have…
4
votes
2 answers

Decoding Opus audio data file to raw data file Node JS

I am trying to decode an Opus file back to raw data file which library should I use.
Mohamed Farouk
  • 279
  • 2
  • 17
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
  • 105
  • 1
  • 2
  • 7
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
  • 3,994
  • 10
  • 54
  • 107
1
2 3
11 12