Questions tagged [dat-protocol]

Dat is a grant-funded, open-source, decentralized data sharing specification and toolkit for efficiently versioning and syncing changes to data.

Dat can be used to version data locally, or to share and sync data over the internet. Dat includes an optional peer-to-peer distribution system, meaning that the more widely that a dataset is shared, the faster it is for users to retrieve or sync a copy, and the more redundant that the dataset’s availability becomes.

By building tools to build and share data pipelines, we aim to bring to data a style of collaboration similar to what Git brings to source code. Dat is designed as a general-purpose tool for any data on the Web, with our main priority being to ensure scientific data can be more easily published and archived. Dat is fully open source and is built using JavaScript, Node.js and Electron.

Project Links

Related Projects

40 questions
0
votes
0 answers

line contains NUL error in reading a .dat file

I want to read a dat file in python but I received the NUL error : `from astropy.io import ascii` ascii.read('fx=0.1_RHS=0.5_fa=0.5_x_lightcone_dtb_6minres.dat') Error: line contains NUL how can I solve this issue? I've tried to read this file…
0
votes
0 answers

How do I read CPS dat file into R?

I downloaded the 2018 ASEC CPS file from https://www.census.gov/data/datasets/time-series/demo/cps/cps-asec.2018.html#list-tab-708W933OHTVO6C3YSX I am having difficulty in reading the data into R. If I download the data and unzip it, it gives me…
0
votes
0 answers

Uploaded .DAT File into Vim and now trying to interpret the data

I uploaded about a 3GB .DAT file into vim. The file contains .DAT file in binary and others in the following language: "0000030801549200000308015492 …
jumpman23
  • 19
  • 5
0
votes
0 answers

DAT files converted into a MYSQL Databse

I have downloaded a DAT file from a company that has millions of book titles; the file is too big and it will not open in notepad or VSC. I was told to upload it into MYSQL but I am not sure how that can be done when I cannot even get the file open.…
jumpman23
  • 19
  • 5
0
votes
1 answer

how to change the data of an airfoil points.dat file from columns to rows

I am interested in developing an application that generates as output the points of an airfoil in rows, in which the row contains the airfoil data, in coordinates x1, y1 | x2, y2 | x3, y3 | From the website airfoilTools AirfoilData, I get the…
awgomes
  • 25
  • 4
0
votes
0 answers

How do you approach decoding the data structure in a binary .dat file in C?

I have a .dat file that I know contains binary data of GPS coordinates. My end goal is to do a distance comparison of the locations in there to a set of reference coordinates. I'm new to accessing .dat files in C but from what I've learned is that…
0
votes
1 answer

Plotting Several Graphs in python with multiple lines from .dat file

I am trying to plot a set of data from a .dat file in Python. I want to create ten different plots, each with seven different lines displayed on them. X-values are a hundred points evenly spaced between 1 and 100. Y values are the 100 points from…
0
votes
0 answers

create new column in excel file and add data from a .DAT file to it VB.Net

This might be too much of a general question as I have yet to write code. I am just looking for some advice tips and tricks for how to go about my problem. I am looking to create a UI using VB.Net which allows me to create a new column in an…
0
votes
1 answer

python in loop substracting files one from another

I´m trying to write a short program that will allow me to subtract values in one file (file A.dat) from other files **(B0.dat, B1.dat, B2.dat.....) I want to make a program that will repeat the process of subtracting the values A file values as many…
UglyBetty
  • 17
  • 1
0
votes
1 answer

How do I load more than one python object stored in the same DAT file?

So, I'm still learning how to use pickle, and have a limited knowledge of it. This may be a beginner question... I created this placeholder class: class Student: def __init__(self): self.__name = "" self.__regNum = 0 self.__fullTime =…
0
votes
1 answer

Pandas how to add value to an existing data-frame by index

I have an example data frame let's call it df. I want to add more numbers to df but i don't want to start adding after NaN's which will be the index 7 i want to start adding from index 3. year number letter 0 1945 10 …
luthierz
  • 51
  • 7
0
votes
1 answer

how to order the files with increasing order and later merge them

I have a few files results_0_1.dat results_1_1.dat results_17_1.dat results_2_1.dat results_22_1.dat results_9_1.dat results_11_1.dat results_21_1.dat I'd like to order them in increasing order 0,1,2...9,10,11....20,21,22.....the second number in…
UglyBetty
  • 17
  • 1
0
votes
1 answer

convert .dat to logging file from CANoe

I want to open a .dat file from INCA in CANoe but for that I need to convert it into a logging file format: ascii, blf, mdf4.... does anybody know how to do it? I can't find anything on the internet.
0
votes
0 answers

Creating a .oft outlook file in windows 10 that will send and open correctly on mac standard email

I am creating an outlook email .oft file built with tables on a windows 10 pc using MS Outlook 2016. I want to be able to send this template as an email over to an apple mac user who can open it on their standard email package. I have tried and…
Nobbby
  • 1
  • 1
  • 3
0
votes
1 answer

How to create a txt file from FOR loop?

I wrote a C++ code using iterative methods. For this, I used a FOR loop. However, I need to save every result by iteration in same text file (or DATA file) as a columns. How can I do it? Thanks for your advices. This a simple version of my…
AUH
  • 3
  • 1