Welcome!
This is the community forum for my apps Pythonista and Editorial.
For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.
Binary files read and write
-
I wish I [k]new how to send it to you
If you have a free login to GitHub, you should be able to go to https://github.com/cclauss/SPLnFFT_tools and click the "+" to add a new file to the repository. Provide a reasonable name with the proper extension (.png, .jpg, etc.). You will then have to click the "Propose new file" and then "Create pull request" button a few times.
-
I made a screenshot and sent the image to the Twitter account @olemoritz to send it to you. Do you have a Twitter account?. It's simpler for me
-
This is the image that I got from @ManuelU via Twitter.
It shows why we want to preprocess our SPLnFTT.bin data files with SPLnFFT_strip.py. The hours from 14h thru 24h contain all zeros. That script would remove those null hours which would
- decrease file size
- reduce upload time, and
- give us higher resolution plots.
And here is a plot from his TechBasic program:
-
@ManuelU, I created a new repo https://github.com/cclauss/SPLnFFT_tools for the code from this thread and updated the links above to point to that repo. I have also included a new binary file of me snoring. Please tell me what the threshold of danger is for snoring. My wife assures me that I am way over that limit but it would be good to get a second opinion.
Do I understand SPLnWATCH correctly? Is that an AppleWatch app that records noise levels? If so, we could get @Phuket2 to use it to tell us which of his favorite bars has the most impressive Sound Pressure Levels.
-
@ccc , LOL, yes I will be the data collector for the bars. Some poor soul like me has to do it :) I also have netatmo (inside, outside and rain module) but the last time I looked I thought there was no python API. I also have Phillips Hue lights. I have seen there are modules to interact with the hue lights API (I think on the tools site). But could be funny to have your snoring levels controlling the lights :)
-
Hi. It depends on frequecy during the whole sleep time, the apnea periodos and the background medical context for each person. Right now I don't know what are the critical values for both parameters. I'll make a peer view on the topic in Internet and I'll.send to you the best links. Key words would be: sleep apnea etiology clinics ,diagnostic and treatment. I record noise with the iPad version of SPLnWATC I, think it's universal, but you need to adjust the settings in the mother App, SPLnFFT. I use the watch version because can record in the background, which supposes a battery and screen saver. You haw to buy the 24 hours record option and have a Dropbox account. that's all. Hope it helps
-
-
@ccc , thanks. Is great to have. In itself, not Exciting (the dashboard app is great), but combined with hue lights could be a lot of fun. I know if than then, but it's just too slow to have real time fun :)
-
here is a slightly different take (on the original wuestion:dynamic matplotlibs). this one is written so it should be compatible with 1.5, as it uses plain touch handling.
the approach i took was as follows: there are zoomable scrollbars in top and size, which van be pinched or scrolled. the width of the bar represents the fraction of a day on the screen. i dont have the skeomorphism tuned quite right, it is slightly awkward i admit. finer panning can be achieved by pulling finger down away from the bar while dragging, similar to the way videos work in safari.
after computing the zoom limits, the way i deal with the millions of points is to resample down to just a few hundred points on the scren... which after all is about all you can see anyway given fixed resolution of the device. i do that by calculating how many of the original data points lie within each resampled point, and then compute the peak signal (for the fast data) and log average (for the slow), then only plot those points. in addition, setting the dpi for the matplotlib image low during dragging makes this reasonably responsive.
One thing i learned...
ui.in_background
is not the same as as threading.Thread... the former seems to queue up commands all on a single background thread, rather than creating a new thread each time. hence therun_async
decorator which i copied from SO.see ZoomSlider and SPLView11 at
https://github.com/jsbain/uicomponentsNext TODO would be to add single touch data "cursor" inside the plot.
-
@ManuelU, generating new hourly files with this new version of SPLnFFT_hourly_split.py should allow you to plot them again.
-
@ccc I noticed now that iTunes File Sharing is not supported even when you connect your iOS device with a cable to a desktop computer
-
@ManuelU this was changed in Build 160025. From the release notes:
iTunes File Sharing is no longer enabled (this was temporary anyway, but with the new internal directory structure, it wouldn't actually work anymore)
-
@webmaster is there an Android or desktop version of Phytonista?
-
@ManuelU Yes, it's called Python.
;)
Of course Pythonista comes with some third-party modules (likenumpy
andmatplotlib
) that are not part of the Python standard library, those need to be installed separately. You can do that using thepip
command (pip install numpy
), or by installing a Python distribution like Anaconda that includes many third-party libraries. Pythonista-specific modules likeui
are of course not available on normal computers. -
@CCC the rule of thumb I use to assess if SLOW and FAST SPL VALUES have not been swapped in the cleansing process is that the start time should always be an odd number and the end time should always be an even number. I noticed that it could happen when reviewing a file that started with a NAN and when eliminated the next register, a fast measurement , was taken as a slow measurement. This may happen if you read the values in a 1D vector and then you transform in a 2D matrix
-
@ManuelU When you say even and odd, are you talking about zero-based numbering like Python or one-based numbering like TechBasic? If zero-based then the very first element in the binary file is even. If one-based then the very first element in the binary file is odd. Thus the Python programmer and the TechBasic will not agree about even and odd.
My current code does not reverse the slow and fast values and it does not detect Infs and NaNs and does no data cleansing.
The code reads in slow,fast pairs into one long two column array. It the writes the first 1/24 th of that array into the 00h_to_01h.bin file (0h00 to 0h59). It writes the second 1/24th of that array into the 01h_to_02h.bin file (1h00 to 1h59).
If you would like the code to do something different, please open an issue and I will see what I can do.
-
@ccc it's one based arrays. If Python is zero based then is right and your script works fine and at an incredible speed for an interpreter.
I just call your attention on this line of code of your script that is not flagged : t_bad=t[(fast<=0) | (slow <= 0)]. As far as I know, negative SPL readings arise when infinites values are recorded and could happen if you have a telephone call in your iPhone while running the App. I only use iPad with no cellular. It seems that in the latest versions of both Apps this bug has been corrected, but I follow the general principle that no programm is bugless. Thank a lot for you nice attention and your work on this topic. -
@dgelessus I downloaded and installed Python Anaconda on my Mac mini OSX Yosemite with no problems, but I don't know where to place my SPLnFFT.bin files to acces them from the @ CCC scripts or where are stored the .py script files. It has a nice and colorful GUI, a good surprise for me, because I thought that it only run with console commands. Thanks in advance for your help and advices.
-
import os print(os.path.abspath(os.curdir))
-
@CCC the FTP SERVER script work well between iOS devices. I tried to connect from my Mac mini with the "Go -> Connect to Server..." menu item from the Finder using all the possible combinatios from the Connect Window, but there is no way to connect . What I'm doing wrong?. Both devices are in the same local Wifi network.