mersenneforum.org  

Go Back   mersenneforum.org > Great Internet Mersenne Prime Search > PrimeNet > GPU to 72

Reply
 
Thread Tools
Old 2013-06-05, 23:22   #199
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

100110001001112 Posts
Default

Quote:
Originally Posted by davieddy View Post
I promise Chris will be grateful when the LL tsunami hits the fan.
Oh, ye of little faith (and little knowledge of what's in the pipeline...).
chalsall is offline   Reply With Quote
Old 2013-06-06, 01:14   #200
c10ck3r
 
c10ck3r's Avatar
 
Aug 2010
Kansas

10438 Posts
Default

Quote:
Originally Posted by chalsall View Post
During a very hectic day, a couple of things popped into my head about this... First, it would be highly advisable to use the same ellipsoid that your GPS is using. It's less than a minute for me to set it to be anything you'd like.

Secondly, are you using Differential GPS (or military grade)? Otherwise you're going to have much greater varation in your data feed than three inches....
This is the base station we use: http://www.trimble.com/agriculture/base-stations.aspx
During operations, 4 RTK Fix is required at all times, which I think is mil. specs.
This feeds to the auto-guidance system which then feeds back to my computer. Out of curiosity, will your tool work in offline mode? I didn't test it in field today due to local weather problems :( Knocked me down to a 7 hour day instead of 17 like yesterday!

P.S. Do you just want me to report once in ~2 weeks, or daily as possible?

Last fiddled with by c10ck3r on 2013-06-06 at 01:16 Reason: Add question
c10ck3r is offline   Reply With Quote
Old 2013-06-06, 02:39   #201
Xyzzy
 
Xyzzy's Avatar
 
"Mike"
Aug 2002

100000001010102 Posts
Default

So is this your farm?

https://maps.google.com/maps?ll=37.976,-97.777&t=h&z=15
Xyzzy is offline   Reply With Quote
Old 2013-06-06, 02:52   #202
davieddy
 
davieddy's Avatar
 
"Lucan"
Dec 2006
England

2×3×13×83 Posts
Default

Quote:
Originally Posted by chalsall View Post
Oh, ye of little faith (and little knowledge of what's in the pipeline...).
A log jam preceeded by a long fart?
Compare this with the regular 300 LLs/day.
davieddy is offline   Reply With Quote
Old 2013-06-06, 03:07   #203
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

9,767 Posts
Default

Quote:
Originally Posted by c10ck3r View Post
This is the base station we use: http://www.trimble.com/agriculture/base-stations.aspx
During operations, 4 RTK Fix is required at all times, which I think is mil. specs.
This feeds to the auto-guidance system which then feeds back to my computer.
Extreme coolness.

Quote:
Originally Posted by c10ck3r View Post
Out of curiosity, will your tool work in offline mode? I didn't test it in field today due to local weather problems :( Knocked me down to a 7 hour day instead of 17 like yesterday!
In all honesty, my "app" is simply leveraging on Geo::Ellipsoid. As in, it simply works with the given Start and End Lat and Long -- online vs. offline is irrelevant. The code is literally:
Code:
...
use Geo::Ellipsoid;
...
$geo = Geo::Ellipsoid->new(ellipsoid=>'NAD27', units=>'degrees', distance_units => 'meter');

@Origin = ( $Lat1, $Long1 );
@Dest = ( $Lat2, $Long2 );
( $Range, $Bearing ) = $geo->to( @Origin, @Dest );
Quote:
Originally Posted by c10ck3r View Post
P.S. Do you just want me to report once in ~2 weeks, or daily as possible?
Entirely up to you.
chalsall is offline   Reply With Quote
Old 2013-06-06, 03:24   #204
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

262716 Posts
Default

Quote:
Originally Posted by davieddy View Post
Compare this with the regular 300 LLs/day.
Actually, approximately 291.7 LLs/day over the last 30 days.
chalsall is offline   Reply With Quote
Old 2013-06-06, 04:09   #205
c10ck3r
 
c10ck3r's Avatar
 
Aug 2010
Kansas

10438 Posts
Default

Quote:
Originally Posted by Xyzzy View Post
Close, but no cigar.

In all actuality, the approximation I used is from trying to mentally recall the coordinates of our seed packaging lab. I work for a company that does precision planting of probably 30 different locations, each one being planted to one (or more) of 4 different crops, planting at each location anywhere from 144 to ~4000, 200-400 sq ft plots with 12-30 inch rows, depending on the crop. We do this all over a 5 state region for seed and chemical companies as well as universities.
c10ck3r is offline   Reply With Quote
Old 2013-06-07, 00:46   #206
davieddy
 
davieddy's Avatar
 
"Lucan"
Dec 2006
England

2×3×13×83 Posts
Default

Quote:
Originally Posted by chalsall View Post
Actually, approximately 291.7 LLs/day over the last 30 days.
No. There is a quirk in your table updates that means you only count 29 days of data between 00.00 and 08.00 UTC.
Perhaps you could correct this.

D
davieddy is offline   Reply With Quote
Old 2013-06-07, 13:28   #207
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

9,767 Posts
Default

Quote:
Originally Posted by davieddy View Post
There is a quirk in your table updates that means you only count 29 days of data between 00.00 and 08.00 UTC.
Incorrect.
chalsall is offline   Reply With Quote
Old 2013-06-07, 21:20   #208
davieddy
 
davieddy's Avatar
 
"Lucan"
Dec 2006
England

11001010010102 Posts
Default

Quote:
Originally Posted by chalsall View Post
Incorrect.
I despair.
Here is a mini case study of "One LL" between 50M and 60M:
Code:
7th June 19:00
          Total   Change
Today     142557  0
Yesterday 142364  193
1 week    141191  1366
30 days   136562  5995

I predict:
 
8th June 02:00
          Total   Change
Today     142557  0
Yesterday 142557  0
1 week    141191+x  1366-x
30 days   136562+y  5995-y
 
where x and y are ~193
D
davieddy is offline   Reply With Quote
Old 2013-06-08, 00:11   #209
chalsall
If I May
 
chalsall's Avatar
 
"Chris Halsall"
Sep 2002
Barbados

976710 Posts
Default

Quote:
Originally Posted by davieddy View Post
Here is a mini case study of "One LL" between 50M and 60M:
You are such a twit...

The Visualisation Tool updates once a day.

Only once the current day's data is available do the databases update.

BTW, have I said I think you're a twit?
chalsall is offline   Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
To 100M to 75 Bits petrw1 GPU to 72 6 2017-04-17 04:03
Is LMH > 100M still alive? TheMawn LMH > 100M 25 2016-04-18 16:11
100m p-1 and tf aurashift Software 18 2016-04-14 13:48
Anyone working in 79.3M - 100M ?? markr Lone Mersenne Hunters 21 2008-12-21 16:02
100M madness stars10250 Hardware 8 2008-10-02 15:21

All times are UTC. The time now is 09:58.


Mon Aug 2 09:58:08 UTC 2021 up 10 days, 4:27, 0 users, load averages: 1.26, 1.36, 1.32

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2021, Jelsoft Enterprises Ltd.

This forum has received and complied with 0 (zero) government requests for information.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation.
A copy of the license is included in the FAQ.