It is currently December 15th, 2019, 11:42 am
Help with creating, editing & fixing problems with skins
-
GTI.H
- Posts: 73
- Joined: December 15th, 2018, 3:35 am
GTI.H » February 28th, 2019, 2:18 am
eclectic-tech wrote: ↑February 28th, 2019, 12:59 am
This RegExp will return the StringIndexes shown below as long as the site HTML does not change.
Code: Select all
RegExp=(?siU).*>Moon Rise:<.*<td>.*>(.*)<.*>Moon Culmination:<.*<td>.*>(.*)<.*>Moon Set:<.*<td>.*>(.*)<.*>Moon Distance:<.*<td>.*>(.*)<.*>Moon Altitude:<.*<td>.*>(.*)<.*>Moon Azimuth:<.*<td>.*>(.*)<.*<acronym>.*"Moon Phase".*class=.*>(.*)<.*<acronym>.*"Moon Age".*class=.*>(.*)<.*<acronym>.*"Next New Moon".*class=.*>(.*)<.*<acronym>.*"Next Full Moon".*class=.*>(.*)<.*>Lat:<.*<td.*<span.*>(.*)<.*<span.*>(.*)<.*>Lng:<.*<td.*<span.*>(.*)<.*<span.*>(.*)<.*
Returned StringIndexes:
1 => 02:55:58 || Moon Rise
2 => 07:30:46 || Moon Culmination
3 => 12:01:09 || Moon Set
4 => 396483km || Moon Distance
5 => -61.83° || Moon Altitude
6 => 10.55° || Moon Azimuth
7 => Waning Crescent/37.0% || Moon Phase
8 => 22.93 von 29.79 Tagen || Moon Age
9 => 06.03.2019 17:03:32 || Next New Moon
10 => 21.03.2019 02:42:19 || Next Full Moon
11 => N 48°51'29.87'' || Lat
12 => 48.85830° || Lat Degrees
13 => E 2°17'40.2'' || Lng
14 => 2.29450° || Lng Degrees
The only other data is a list of eclipses starting in 2001, but that contains 20+ values for each eclipse and trying to capture just the first few would exceed the limit of 99 indexes for a single parse. This could be done using a separate measure and perhaps StringIndex2 method.
You are the RegExps god!

Thanks

!
This informations for now is more than enough.
It would be nice to separate items 7 and 8 into two data.
My little test RegEx works here with my WebParserDump.txt:
but it does not work on my Measure:
Code: Select all
[MSMoonData2]
Measure=WebParser
UpdateRate=#UpdateMoon#
URL=file://D:\Documents\Rainmeter\Forum\SunMoonCalc\Scripts\output.html
RegExp=(?siU)Moon Rise:.*pointer;">(.*)</span>.*Moon Culmination:.*pointer;">(.*)</span>
I put the data in the mouth of WebParser and it does not want to chew.
I'm struggling here and I can not see the cause of my mistakes.
I test yours RegExp too and gave the same error:
Erro.JPG
You do not have the required permissions to view the files attached to this post.
Last edited by GTI.H on February 28th, 2019, 3:49 am, edited 1 time in total.
-
jsmorley
- Developer
- Posts: 19870
- Joined: April 19th, 2009, 11:02 pm
- Location: Fort Hunt, Virginia, USA
jsmorley » February 28th, 2019, 2:20 am
The output is encoded in UTF-16 LE. You will need to use Codepage=1200 on the WebParser parent measure.
-
GTI.H
- Posts: 73
- Joined: December 15th, 2018, 3:35 am
GTI.H » February 28th, 2019, 2:40 am
jsmorley wrote: ↑February 28th, 2019, 2:20 am
The output is encoded in UTF-16 LE. You will need to use
Codepage=1200 on the WebParser parent measure.

MY GOD, that worked!

Thank you very much
jsmorley !!!
We did the impossible!
I had already verified this and found <meta charset = "utf-8"> in output.html and in WebParserDump.txt and found that everything was correct in this part.
How did you find
Codepage=1200 ?
-
eclectic-tech
- Rainmeter Sage
- Posts: 3645
- Joined: April 12th, 2012, 9:40 pm
- Location: Cedar Point, Ohio, USA
eclectic-tech » February 28th, 2019, 2:47 am
GTI.H wrote: ↑February 28th, 2019, 2:18 am
...
It would be nice to separate items 7 and 8 into two data.
...
Here is an updated RegExp to separate indexes 7 and 8:
Code: Select all
RegExp=(?siU).*>Moon Rise:<.*<td>.*>(.*)<.*>Moon Culmination:<.*<td>.*>(.*)<.*>Moon Set:<.*<td>.*>(.*)<.*>Moon Distance:<.*<td>.*>(.*)<.*>Moon Altitude:<.*<td>.*>(.*)<.*>Moon Azimuth:<.*<td>.*>(.*)<.*<acronym>.*"Moon Phase".*class=.*>(.*)/(.*)<.*<acronym>.*"Moon Age".*class=.*>(.*)\s.*\s(.*)\s.*<.*<acronym>.*"Next New Moon".*class=.*>(.*)<.*<acronym>.*"Next Full Moon".*class=.*>(.*)<.*>Lat:<.*<td.*<span.*>(.*)<.*<span.*>(.*)<.*>Lng:<.*<td.*<span.*>(.*)<.*<span.*>(.*)<.*
This will return the original index 7 as "Waning Crescent" and index 8 as "37.0%"
Index 9 will be "22.93" and index 10 is "29.79"
Of course the remaining indexes will be increased by these 2 additional captures.
As JSMorley pointed out, you need to know how the file is encoded to avoid errors.
-
jsmorley
- Developer
- Posts: 19870
- Joined: April 19th, 2009, 11:02 pm
- Location: Fort Hunt, Virginia, USA
jsmorley » February 28th, 2019, 3:06 am
GTI.H wrote: ↑February 28th, 2019, 2:40 am

MY GOD, that worked!

Thank you very much
jsmorley !!!
We did the impossible!
I had already verified this and found <meta charset = "utf-8"> in output.html and in WebParserDump.txt and found that everything was correct in this part.
How did you find
Codepage=1200 ?
I just loaded your output in Notepad++ and checked the encoding.
https://docs.rainmeter.net/manual/measures/webparser/#CodePage
It doesn't matter what encoding the website uses, the Powershell script you are using is saving it in the default UTF-16 LE. There is likely a way to change that if you want, but I'm not sure it really matters.
-
GTI.H
- Posts: 73
- Joined: December 15th, 2018, 3:35 am
GTI.H » February 28th, 2019, 3:16 am
eclectic-tech wrote: ↑February 28th, 2019, 2:47 am
Here is an updated RegExp to separate indexes 7 and 8:
Code: Select all
RegExp=(?siU).*>Moon Rise:<.*<td>.*>(.*)<.*>Moon Culmination:<.*<td>.*>(.*)<.*>Moon Set:<.*<td>.*>(.*)<.*>Moon Distance:<.*<td>.*>(.*)<.*>Moon Altitude:<.*<td>.*>(.*)<.*>Moon Azimuth:<.*<td>.*>(.*)<.*<acronym>.*"Moon Phase".*class=.*>(.*)/(.*)<.*<acronym>.*"Moon Age".*class=.*>(.*)\s.*\s(.*)\s.*<.*<acronym>.*"Next New Moon".*class=.*>(.*)<.*<acronym>.*"Next Full Moon".*class=.*>(.*)<.*>Lat:<.*<td.*<span.*>(.*)<.*<span.*>(.*)<.*>Lng:<.*<td.*<span.*>(.*)<.*<span.*>(.*)<.*
This will return the original index 7 as "Waning Crescent" and index 8 as "37.0%"
Index 9 will be "22.93" and index 10 is "29.79"
Of course the remaining indexes will be increased by these 2 additional captures.
As JSMorley pointed out, you need to know how the file is encoded to avoid errors.
Perfect as it should be!
Thank you!
I'm still going to test and implement the childs.
I believe in you, you are the one who does not believe me! 
Last edited by GTI.H on February 28th, 2019, 3:43 am, edited 1 time in total.
-
GTI.H
- Posts: 73
- Joined: December 15th, 2018, 3:35 am
GTI.H » February 28th, 2019, 3:28 am
jsmorley wrote: ↑February 28th, 2019, 3:06 am
I just loaded your output in Notepad++ and checked the encoding.
https://docs.rainmeter.net/manual/measures/webparser/#CodePage
It doesn't matter what encoding the website uses, the Powershell script you are using is saving it in the default UTF-16 LE. There is likely a way to change that if you want, but I'm not sure it really matters.
It matters a lot, without it WebParser does not work, but we do not have to change the default UTF-16 LE.
-
jsmorley
- Developer
- Posts: 19870
- Joined: April 19th, 2009, 11:02 pm
- Location: Fort Hunt, Virginia, USA
jsmorley » February 28th, 2019, 3:51 am
GTI.H wrote: ↑February 28th, 2019, 3:28 am
It matters a lot, without it WebParser does not work, but we do not have to change the default UTF-16 LE.
What I mean is that is doesn't matter if the file is UTF-8 and you use WebParser with the default Codepage, or the file is UTF-16 LE and you use Codepage=1200, as long as you know which it is and can react appropriately.
-
GTI.H
- Posts: 73
- Joined: December 15th, 2018, 3:35 am
GTI.H » February 28th, 2019, 4:27 pm
jsmorley wrote: ↑February 28th, 2019, 3:51 am
What I mean is that is doesn't matter if the file is UTF-8 and you use WebParser with the default Codepage, or the file is UTF-16 LE and you use Codepage=1200, as long as you know which it is and can react appropriately.
That is what I had understood even though my answer suggested something else.
So I asked where you saw UTF-16 LE.
This is kind of confusing to anyone who is not on top of it all the time,
See Here.
This is what I see in my Notepad++:
output file N++ Encoding.JPG
You do not have the required permissions to view the files attached to this post.
-
GTI.H
- Posts: 73
- Joined: December 15th, 2018, 3:35 am
GTI.H » March 25th, 2019, 8:45 pm
Hi all,
Does anyone know how to get the angular direction of the Moon's Limb with the information available on this
website or any other?
It would be something like this:
Moon's Limb angular direction.JPG
I tried the "
Moon Azimuth" and it seemed to work more or less for the phases of the Waxing moon but for the waning moon the difference increased.
Every help is welcome.

You do not have the required permissions to view the files attached to this post.