Questions tagged [real-time-data]

Real-time data is information that is delivered immediately after collection. For questions regarding the real-time data feature of Excel, choose the 'RTD' tag.

Real-time data is information that is delivered immediately after collection. There is no delay in the timeliness of the information provided, save of technical limitations such as transmission delay. Areas of application are navigation, tracking or charting.

311 questions
1
vote
0 answers

RTD Server : how to read RTD server data in C#

I have developed an application to read data from excel spreadsheet which get data from RTD server. So whenever spreadsheet get updated I can write that data to database using C#. But my concern is that I don't want to rely on that spreadsheet as an…
dnyan86
  • 107
  • 2
  • 2
  • 8
1
vote
1 answer

Realtime chat box inside a 3d game

Basic information about what going on: I have a 3d multiplayer game, there is about only 15-20 users connected. I'm using C++ as coding mixed with objective c, there is a small realtime chatbox sending and recving msg, via a socket based http post…
user1341993
  • 253
  • 2
  • 5
  • 14
0
votes
0 answers

i have been working on calculating phase difference between 2 sine waves, i have been successful, i needed to know if there is a more optimized model?

i have been working on calculating phase difference between 2 sine waves, i have been successful, i needed to know if there is a more optimized model? Adding to this, 1> is there any realtime dataset for validating the code i have written? any…
0
votes
0 answers

LightningChart -- real-time data monitor

I am trying to create a (near) real-time data monitor using LightningChart. The data is pushed every 3 seconds and 6 seconds worth of data is pushed every time. So I tried using this example to create a steady animation: Progressive xAxis - Timed…
0
votes
1 answer

How do I Record and Transcribe at the same time in python

I've been trying to implement a real-time speech recognition app for system audio using python but can't really figure out how to do both simultaneously. I'm able to capture the system audio but since the transcription takes time, I'm unable to…
0
votes
1 answer

Best way to process and store real time MQTT data in AWS Cloud

I need to receive the real-time MQTT data, get them stored in AWS Cloud, and provide the insights using these data in a separate web-based application. In this requirement, would that be better to store them in DynamoDB or S3? I tried to process…
0
votes
1 answer

Extract Salesforce live data in Azure SQL database

I have fetched data from Salesforce using Azure Data Factory into my Azure SQL database. I have fully setup linked services and datasets. I have fully checked the data which I fetched from Salesforce is coming right through my data factory…
0
votes
0 answers

BUG when rendering data by category in reactjs

So, i have a dynamic data from redux state...this data can be delete by user and show the realtime data. I make a filter button for my data (all, frontend, backend).Actually about 50% it works, i can see the data when the category is changing...but…
fyz 08
  • 35
  • 4
0
votes
0 answers

Realtime Data Insertion in MongoDB

I am currently working on logging real-time data to a database with a frequency of 50 milliseconds. I need guidance on the appropriate approach for logging the data, considering the following scenarios: Each streaming result will vary, and I want…
Prasanna
  • 1,752
  • 1
  • 15
  • 27
0
votes
0 answers

Gecko forms to powerBI in real time

I need to get data entered into a gecko form into a PowerBI report in real time. I have found a solution: Gecko -> Web hook -> Pipedream -> Google Sheets -> PowerBI But this is limited to a refresh every 30 minutes in power BI. And we would prefer…
Nathan
  • 1
  • 1
0
votes
2 answers

How to receive real time notifications in Angular frontend from Spring kafka backend

I am wondering if it is possible to send real time user notifications to an angular client from spring kafka backend, my approach was to send it through the kafka topics instead of using websocket STOMP, and create a topic for each user, and in…
0
votes
0 answers

Continuously Record Audio in Python And Save Streams As Separate Audio Files

I want to write a Python script that continuously records audio from an input source (this Python program will be running 24/7). Much of the time, the audio input will be silent, but maybe two or three times a day there will be several distinct…
joejoejoejoe4
  • 1,206
  • 1
  • 18
  • 38
0
votes
2 answers

Manipulate the dataset of time

I have this kind of data set, I want to manipulate it a bit for my own purpose. The data now is like this: date time tmpc 2019-01-01 00:15 3.11 2019-01-01 00:35 3.22 2019-01-01 00:55 3.28 2019-01-01 01:15 3.28 2019-01-01 01:35 3.28 2019-01-01…
sehne
  • 1
  • 2
0
votes
0 answers

Socket.io-node-react app only showing recent message

In my socket-node-react app ,when ever I try to real time chat sometimes all message shows,some times only recent message shows, somwtimes only few of recent messages show in react-scrollable-feed! It should show all the messages of a chat! please…
0
votes
1 answer

Outbox Pattern vs Debezium

I am trying to understand if there's a fundamental difference between what the 2 are trying to achieve. I have a use case of landing my postgres data to data lake, and these are the 2 paved-road approaches that i have. Option 1. Create an outbox…