Re: Plotting Equations that Bifurcate

2020-11-03 Thread Alex Tweedly via use-livecode
On 31/10/2020 02:28, Roger Guay via use-livecode wrote: Lots of clever ideas here, Alex, but I think you’re missing the point of what I ultimately want to do. I'm building a plotting program for which I want to plot any equation including those that have multiple values of y for a given x. An

Re: IOS Screen resizing /EXACT FIT not working as before

2020-11-03 Thread Mark Wieder via use-livecode
On 11/3/20 4:08 PM, Lagi Pittas via use-livecode wrote: Thanks though - every suggestion comes in useful sometime (is that a Dean Martin song?) LOL -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list use-livecode@lists.runrev.com Pl

Re: IOS Screen resizing /EXACT FIT not working as before

2020-11-03 Thread Lagi Pittas via use-livecode
Hi, Thanks for that hint Jacque will certainly have a look at that. Panos - we have 4 Iphone pluses and they are all set to standard - all worked fine before. But I checked mine and another just in case an IOS update changed it - nope both still standard. Thanks though - every suggestion com

Re: Query large CSV file as a data source?

2020-11-03 Thread matthias rebbe via use-livecode
> Am 03.11.2020 um 23:02 schrieb Bob Sneidar via use-livecode > : > > Just read for 10,000 lines and check for empty each time. > To be honest, i've never used the read file for ... lines. I was expecting that there might be an error if one tries to read more lines than there are left for

Re: Ideas on iOS GPS tracking needed

2020-11-03 Thread Bob Sneidar via use-livecode
Seems to me if you are tracking linear movement, you need to average the trending values, say the last 5 or 10 reads, against a time base, and reject the ones outside an acceptable tolerance. You may reject some good data here and there, but something grossly outside tolerance should be pretty e

Re: Ideas on iOS GPS tracking needed

2020-11-03 Thread Alan Stenhouse via use-livecode
Hi Graham Are you checking the horizontal accuracy of each reading? (It's part of the array of data with your lat-longs, as well as speed, etc - though not on every phone). If not, try that and see if the anomalous readings are hugely out. From my experience, that's normally the case. If so,

Re: Query large CSV file as a data source?

2020-11-03 Thread Bob Sneidar via use-livecode
Just read for 10,000 lines and check for empty each time. Bob S > On Nov 3, 2020, at 7:09 AM, matthias rebbe via use-livecode > wrote: > > Regarding the loop. > > you could do a > > put the detailed files > > to get the file size of that csv file. > > With that size you would now how of

Re: Query large CSV file as a data source?

2020-11-03 Thread matthias rebbe via use-livecode
Regarding the loop. you could do a put the detailed files to get the file size of that csv file. With that size you would now how often you have to run the loop - Matthias Rebbe Life Is Too Short For Boring Code > Am 03.11.2020 um 15:14 schrieb Keith Clarke via use-livecode > : > > Tha

Re: Query large CSV file as a data source?

2020-11-03 Thread Keith Clarke via use-livecode
Thank you Matthias, I wasn’t aware of that ability to open the file and read its contents straight from the disk. A quick experiment looks positive - no hanging and fast access - so I just need to work on the loop. Much obliged. Best, Keith > On 3 Nov 2020, at 13:37, matthias rebbe via us

Re: Query large CSV file as a data source?

2020-11-03 Thread matthias rebbe via use-livecode
Couldn't you read the file partially you would open the file for read open file tFile for read then in a repeat loop you could read e.g. 1 lines and process the data read from file tFile for 1 lines Just a thought. - Matthias Rebbe Life Is Too Short For Boring Code

Query large CSV file as a data source?

2020-11-03 Thread Keith Clarke via use-livecode
Hi folks, I’ve a 3GB CSV file with 18M rows from which I need to create a subset CSV file for the rows containing tString. The following script results in LiveCode becoming unresponsive, so I’m wondering if I’m missing an obvious trick or what alternative approach I might take... on mouseUp pBut

Re: IOS Screen resizing /EXACT FIT not working as before

2020-11-03 Thread panagiotis merakos via use-livecode
Hello Lagi, In the iPhone 8 Plus device, could you check in Settings -> Display and Brightness and then scroll down and in the "Display Zoom" section, does it say "Standard" or "Zoomed" ? If it says Zoomed, then the stack will scale as if it was on an iPhone 8. Changing this to Standard will caus