setinterval Not updating/refreshing through out app- Node.js
I am trying to write a program that collects theme park wait times to try and create a database for some data science practice. I'm trying to collect this data from the themeparks node.js package.
My background is more in R and python, so I'm learning on the fly. I have gotten to the point now where I can output a .csv file from specified park(s), in the correct format that I want, with the file name to include the date, the headers be the name of the rides for that park, and the rows containing the wait time for the ride, with a time stamp added at the end to specify when the times were extracted.
Currently I have the file being created, the header added, then the ride time rows to be added every 3 seconds (normally 5 minutes, but for testing purposes its set at 3 seconds).
The problem I'm facing is that currently, my time stamps are not updating and neither are current times.
For future planning reference, I plan on later adding a specific time that time collection would end and start based on the park hours, but for now, I have it set to start when the app is started and run till infinity. Also, I same snippet, running for 3 other parks (take a guess which ones) within the same app to create other .csv for them, but of course they have their own credentials in order to get that data. The intent later would be to have each park have its own app, that a main app would call on them to run, but fo now they are within the same app and basically have the same structure as this snippet. As of right now, I just need to know how to get the time and data to update, and why it is not.
// include the Themeparks library
var Themeparks = require("themeparks");
var fs = require('fs');
//Date
var datetime = require('node-datetime');
var dt = datetime.create();
var TodayDate = dt.format('m-d-Y');
var TimeDate = dt.format('m-d-Y H:m');
var TimeStamp = "Time Stamp" //The Header for Time Stamp
//************************ MAGIC KINGDOM ***********************
var disneyMagicKingdom = new Themeparks.Parks.WaltDisneyWorldMagicKingdom
disneyMagicKingdom.GetWaitTimes().then(function(rides) {
for(var i=0 , ride; ride=rides[i++];) {
// Write out the data in this format: "<RIDE NAME>",<WAIT TIME>
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', """ + ride.name + """ + ",");
}
//Goes to the next line in the csv, so the times will start on the next line.
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', TimeStamp);
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', 'rn');
//Repeats the Wait times interval
setInterval(MKTime, 1000*3)
function MKTime() {
for(var i=0 , ride; ride=rides[i++];) {
// Write out the data in this format: "<RIDE NAME>",<WAIT TIME>
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', ride.waitTime + ",");
// Write out a new line so that when this loop repeats, the next row will be written on its own line
}
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', TimeDate);
//Goes to the next line in the csv so when the next interval starts, the times will be on the next line
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', 'rn');
}
}, console.error);
javascript node.js scheduler
add a comment |
I am trying to write a program that collects theme park wait times to try and create a database for some data science practice. I'm trying to collect this data from the themeparks node.js package.
My background is more in R and python, so I'm learning on the fly. I have gotten to the point now where I can output a .csv file from specified park(s), in the correct format that I want, with the file name to include the date, the headers be the name of the rides for that park, and the rows containing the wait time for the ride, with a time stamp added at the end to specify when the times were extracted.
Currently I have the file being created, the header added, then the ride time rows to be added every 3 seconds (normally 5 minutes, but for testing purposes its set at 3 seconds).
The problem I'm facing is that currently, my time stamps are not updating and neither are current times.
For future planning reference, I plan on later adding a specific time that time collection would end and start based on the park hours, but for now, I have it set to start when the app is started and run till infinity. Also, I same snippet, running for 3 other parks (take a guess which ones) within the same app to create other .csv for them, but of course they have their own credentials in order to get that data. The intent later would be to have each park have its own app, that a main app would call on them to run, but fo now they are within the same app and basically have the same structure as this snippet. As of right now, I just need to know how to get the time and data to update, and why it is not.
// include the Themeparks library
var Themeparks = require("themeparks");
var fs = require('fs');
//Date
var datetime = require('node-datetime');
var dt = datetime.create();
var TodayDate = dt.format('m-d-Y');
var TimeDate = dt.format('m-d-Y H:m');
var TimeStamp = "Time Stamp" //The Header for Time Stamp
//************************ MAGIC KINGDOM ***********************
var disneyMagicKingdom = new Themeparks.Parks.WaltDisneyWorldMagicKingdom
disneyMagicKingdom.GetWaitTimes().then(function(rides) {
for(var i=0 , ride; ride=rides[i++];) {
// Write out the data in this format: "<RIDE NAME>",<WAIT TIME>
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', """ + ride.name + """ + ",");
}
//Goes to the next line in the csv, so the times will start on the next line.
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', TimeStamp);
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', 'rn');
//Repeats the Wait times interval
setInterval(MKTime, 1000*3)
function MKTime() {
for(var i=0 , ride; ride=rides[i++];) {
// Write out the data in this format: "<RIDE NAME>",<WAIT TIME>
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', ride.waitTime + ",");
// Write out a new line so that when this loop repeats, the next row will be written on its own line
}
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', TimeDate);
//Goes to the next line in the csv so when the next interval starts, the times will be on the next line
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', 'rn');
}
}, console.error);
javascript node.js scheduler
add a comment |
I am trying to write a program that collects theme park wait times to try and create a database for some data science practice. I'm trying to collect this data from the themeparks node.js package.
My background is more in R and python, so I'm learning on the fly. I have gotten to the point now where I can output a .csv file from specified park(s), in the correct format that I want, with the file name to include the date, the headers be the name of the rides for that park, and the rows containing the wait time for the ride, with a time stamp added at the end to specify when the times were extracted.
Currently I have the file being created, the header added, then the ride time rows to be added every 3 seconds (normally 5 minutes, but for testing purposes its set at 3 seconds).
The problem I'm facing is that currently, my time stamps are not updating and neither are current times.
For future planning reference, I plan on later adding a specific time that time collection would end and start based on the park hours, but for now, I have it set to start when the app is started and run till infinity. Also, I same snippet, running for 3 other parks (take a guess which ones) within the same app to create other .csv for them, but of course they have their own credentials in order to get that data. The intent later would be to have each park have its own app, that a main app would call on them to run, but fo now they are within the same app and basically have the same structure as this snippet. As of right now, I just need to know how to get the time and data to update, and why it is not.
// include the Themeparks library
var Themeparks = require("themeparks");
var fs = require('fs');
//Date
var datetime = require('node-datetime');
var dt = datetime.create();
var TodayDate = dt.format('m-d-Y');
var TimeDate = dt.format('m-d-Y H:m');
var TimeStamp = "Time Stamp" //The Header for Time Stamp
//************************ MAGIC KINGDOM ***********************
var disneyMagicKingdom = new Themeparks.Parks.WaltDisneyWorldMagicKingdom
disneyMagicKingdom.GetWaitTimes().then(function(rides) {
for(var i=0 , ride; ride=rides[i++];) {
// Write out the data in this format: "<RIDE NAME>",<WAIT TIME>
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', """ + ride.name + """ + ",");
}
//Goes to the next line in the csv, so the times will start on the next line.
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', TimeStamp);
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', 'rn');
//Repeats the Wait times interval
setInterval(MKTime, 1000*3)
function MKTime() {
for(var i=0 , ride; ride=rides[i++];) {
// Write out the data in this format: "<RIDE NAME>",<WAIT TIME>
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', ride.waitTime + ",");
// Write out a new line so that when this loop repeats, the next row will be written on its own line
}
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', TimeDate);
//Goes to the next line in the csv so when the next interval starts, the times will be on the next line
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', 'rn');
}
}, console.error);
javascript node.js scheduler
I am trying to write a program that collects theme park wait times to try and create a database for some data science practice. I'm trying to collect this data from the themeparks node.js package.
My background is more in R and python, so I'm learning on the fly. I have gotten to the point now where I can output a .csv file from specified park(s), in the correct format that I want, with the file name to include the date, the headers be the name of the rides for that park, and the rows containing the wait time for the ride, with a time stamp added at the end to specify when the times were extracted.
Currently I have the file being created, the header added, then the ride time rows to be added every 3 seconds (normally 5 minutes, but for testing purposes its set at 3 seconds).
The problem I'm facing is that currently, my time stamps are not updating and neither are current times.
For future planning reference, I plan on later adding a specific time that time collection would end and start based on the park hours, but for now, I have it set to start when the app is started and run till infinity. Also, I same snippet, running for 3 other parks (take a guess which ones) within the same app to create other .csv for them, but of course they have their own credentials in order to get that data. The intent later would be to have each park have its own app, that a main app would call on them to run, but fo now they are within the same app and basically have the same structure as this snippet. As of right now, I just need to know how to get the time and data to update, and why it is not.
// include the Themeparks library
var Themeparks = require("themeparks");
var fs = require('fs');
//Date
var datetime = require('node-datetime');
var dt = datetime.create();
var TodayDate = dt.format('m-d-Y');
var TimeDate = dt.format('m-d-Y H:m');
var TimeStamp = "Time Stamp" //The Header for Time Stamp
//************************ MAGIC KINGDOM ***********************
var disneyMagicKingdom = new Themeparks.Parks.WaltDisneyWorldMagicKingdom
disneyMagicKingdom.GetWaitTimes().then(function(rides) {
for(var i=0 , ride; ride=rides[i++];) {
// Write out the data in this format: "<RIDE NAME>",<WAIT TIME>
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', """ + ride.name + """ + ",");
}
//Goes to the next line in the csv, so the times will start on the next line.
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', TimeStamp);
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', 'rn');
//Repeats the Wait times interval
setInterval(MKTime, 1000*3)
function MKTime() {
for(var i=0 , ride; ride=rides[i++];) {
// Write out the data in this format: "<RIDE NAME>",<WAIT TIME>
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', ride.waitTime + ",");
// Write out a new line so that when this loop repeats, the next row will be written on its own line
}
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', TimeDate);
//Goes to the next line in the csv so when the next interval starts, the times will be on the next line
fs.appendFileSync('Magic Kingdom ' + TodayDate + '.csv', 'rn');
}
}, console.error);
javascript node.js scheduler
javascript node.js scheduler
edited Jan 2 at 15:52
codebreach
1,3831224
1,3831224
asked Jan 2 at 14:12
tawildbergertawildberger
31
31
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Your date and time variables are created at the begining of the code block and not inside the function called by setInterval
. Thus they are going to be whatever they were when the code was run and not change over multiple setInterval
calls. A simple fix would be to move those variable inside the function MKTime
or define new variables inside that method.
When I move all of the date and time variables into the MKtime function, I get a repeating timestamp of the correct date with correct hour, but the hour will change, but not the minutes. It sticks at 01. if its 11:48 or any other time in 11 it will show up at 11:01 no matter the actual current minute. I have tried to put all date variables (the ones that I need for the function) and create them within the function, and I have also tried to only put "var TimeDate = dt.format('m-d-Y H:m'); in the function and the result ends up being the same.
– tawildberger
Jan 2 at 17:03
The format is in correctm
=month
MM
=minute
– codebreach
Jan 2 at 22:25
var TimeDate = dt.format('m-d-Y H:m');
should bevar TimeDate = dt.format('m-d-Y H:MM');
– codebreach
Jan 2 at 22:26
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54007861%2fsetinterval-not-updating-refreshing-through-out-app-node-js%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Your date and time variables are created at the begining of the code block and not inside the function called by setInterval
. Thus they are going to be whatever they were when the code was run and not change over multiple setInterval
calls. A simple fix would be to move those variable inside the function MKTime
or define new variables inside that method.
When I move all of the date and time variables into the MKtime function, I get a repeating timestamp of the correct date with correct hour, but the hour will change, but not the minutes. It sticks at 01. if its 11:48 or any other time in 11 it will show up at 11:01 no matter the actual current minute. I have tried to put all date variables (the ones that I need for the function) and create them within the function, and I have also tried to only put "var TimeDate = dt.format('m-d-Y H:m'); in the function and the result ends up being the same.
– tawildberger
Jan 2 at 17:03
The format is in correctm
=month
MM
=minute
– codebreach
Jan 2 at 22:25
var TimeDate = dt.format('m-d-Y H:m');
should bevar TimeDate = dt.format('m-d-Y H:MM');
– codebreach
Jan 2 at 22:26
add a comment |
Your date and time variables are created at the begining of the code block and not inside the function called by setInterval
. Thus they are going to be whatever they were when the code was run and not change over multiple setInterval
calls. A simple fix would be to move those variable inside the function MKTime
or define new variables inside that method.
When I move all of the date and time variables into the MKtime function, I get a repeating timestamp of the correct date with correct hour, but the hour will change, but not the minutes. It sticks at 01. if its 11:48 or any other time in 11 it will show up at 11:01 no matter the actual current minute. I have tried to put all date variables (the ones that I need for the function) and create them within the function, and I have also tried to only put "var TimeDate = dt.format('m-d-Y H:m'); in the function and the result ends up being the same.
– tawildberger
Jan 2 at 17:03
The format is in correctm
=month
MM
=minute
– codebreach
Jan 2 at 22:25
var TimeDate = dt.format('m-d-Y H:m');
should bevar TimeDate = dt.format('m-d-Y H:MM');
– codebreach
Jan 2 at 22:26
add a comment |
Your date and time variables are created at the begining of the code block and not inside the function called by setInterval
. Thus they are going to be whatever they were when the code was run and not change over multiple setInterval
calls. A simple fix would be to move those variable inside the function MKTime
or define new variables inside that method.
Your date and time variables are created at the begining of the code block and not inside the function called by setInterval
. Thus they are going to be whatever they were when the code was run and not change over multiple setInterval
calls. A simple fix would be to move those variable inside the function MKTime
or define new variables inside that method.
answered Jan 2 at 14:19
codebreachcodebreach
1,3831224
1,3831224
When I move all of the date and time variables into the MKtime function, I get a repeating timestamp of the correct date with correct hour, but the hour will change, but not the minutes. It sticks at 01. if its 11:48 or any other time in 11 it will show up at 11:01 no matter the actual current minute. I have tried to put all date variables (the ones that I need for the function) and create them within the function, and I have also tried to only put "var TimeDate = dt.format('m-d-Y H:m'); in the function and the result ends up being the same.
– tawildberger
Jan 2 at 17:03
The format is in correctm
=month
MM
=minute
– codebreach
Jan 2 at 22:25
var TimeDate = dt.format('m-d-Y H:m');
should bevar TimeDate = dt.format('m-d-Y H:MM');
– codebreach
Jan 2 at 22:26
add a comment |
When I move all of the date and time variables into the MKtime function, I get a repeating timestamp of the correct date with correct hour, but the hour will change, but not the minutes. It sticks at 01. if its 11:48 or any other time in 11 it will show up at 11:01 no matter the actual current minute. I have tried to put all date variables (the ones that I need for the function) and create them within the function, and I have also tried to only put "var TimeDate = dt.format('m-d-Y H:m'); in the function and the result ends up being the same.
– tawildberger
Jan 2 at 17:03
The format is in correctm
=month
MM
=minute
– codebreach
Jan 2 at 22:25
var TimeDate = dt.format('m-d-Y H:m');
should bevar TimeDate = dt.format('m-d-Y H:MM');
– codebreach
Jan 2 at 22:26
When I move all of the date and time variables into the MKtime function, I get a repeating timestamp of the correct date with correct hour, but the hour will change, but not the minutes. It sticks at 01. if its 11:48 or any other time in 11 it will show up at 11:01 no matter the actual current minute. I have tried to put all date variables (the ones that I need for the function) and create them within the function, and I have also tried to only put "var TimeDate = dt.format('m-d-Y H:m'); in the function and the result ends up being the same.
– tawildberger
Jan 2 at 17:03
When I move all of the date and time variables into the MKtime function, I get a repeating timestamp of the correct date with correct hour, but the hour will change, but not the minutes. It sticks at 01. if its 11:48 or any other time in 11 it will show up at 11:01 no matter the actual current minute. I have tried to put all date variables (the ones that I need for the function) and create them within the function, and I have also tried to only put "var TimeDate = dt.format('m-d-Y H:m'); in the function and the result ends up being the same.
– tawildberger
Jan 2 at 17:03
The format is in correct
m
= month
MM
= minute
– codebreach
Jan 2 at 22:25
The format is in correct
m
= month
MM
= minute
– codebreach
Jan 2 at 22:25
var TimeDate = dt.format('m-d-Y H:m');
should be var TimeDate = dt.format('m-d-Y H:MM');
– codebreach
Jan 2 at 22:26
var TimeDate = dt.format('m-d-Y H:m');
should be var TimeDate = dt.format('m-d-Y H:MM');
– codebreach
Jan 2 at 22:26
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54007861%2fsetinterval-not-updating-refreshing-through-out-app-node-js%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown