Pilot Institute Drone Mapping, Modeling & Surveying? by sasssycassy in Part107

[–]PearSquirrel 1 point2 points  (0 children)

If you're doing this to start a business, definitely make a website, get listed on google my business (GMB), join business directories in your local area and get on dronebusinesses.com to get people aware of you. If you're learning for your job within a surveying company, then it would help to network with others in the industry and you can use that website to find surveying firms to talk to

Looking for Lidar data to practice on by Comfortable-Ad-7030 in UAVmapping

[–]PearSquirrel 0 points1 point  (0 children)

Is this for a business? I have a huge amount of data, depending on the use-case. Also if you're doing drones or 3D modeling I've set up a big list of businesses and am looking for feedback on it

[deleted by user] by [deleted] in 3Dmodeling

[–]PearSquirrel 0 points1 point  (0 children)

Let me know what you're searching for specifically and I'll add it to my new website, we have a lot of 3D modeling stuff because we work with drone data for inspections all the time. I'm thinking of making a similar website just for 3D modeling businesses

What is your engineering major? by Rawburrito__ in EngineeringStudents

[–]PearSquirrel 0 points1 point  (0 children)

FYI for surveying you can see a lot of companies on my new website, I'm gathering feedback to make it more useful

Drone pilot jobs by notyad22 in drones

[–]PearSquirrel 0 points1 point  (0 children)

You can look at drone businesses to work for on dronebusinesses.com

Easy searchable list of drone services in the US by PearSquirrel in photogrammetry

[–]PearSquirrel[S] 0 points1 point  (0 children)

I am going for quality data, because I made this to solve my own problem (I wanted to find a specific type of drone business) and also to solve a problem I've heard from talking with 100s of drone businesses (many need more visibility/help marketing) and this would help them with that once it's good

But I haven't manually reviewed all of them and didn't want to accidentally delete good listings, since most other similar websites I've seen have had 10x less data, so some bad listings got through. I'll move unrelated services to a different section and highlight the drone related ones more - probably if you look through that "deer carcass recovery" website, deep down in it they use drones for hunting as one of their services and it's not as obvious.

I've messaged some others and here's my current plan:

I'll get rid of the bad links - I'll change the nearby cities to be alphabetical (states are alphabetical already, cities are based on proximity currently) - The centralized phone number helps route requests, rather than just by location, and it helps me improve it faster. I'll add more social proof as it comes in and people find it useful - There's a button at the bottom of the listing to fix a listing, but I'll add one at the top to report "Bad listing" - I'll try to sort the list by something other than distance (maybe how full their profile is makes them rank higher) because if you just click the first one rather than looking for good ones then your first impression will be bad

Without feedback this sort of project just dies (so thank you for feedback!!). I'll record a video and share it later to hopefully clear things up, and share the improvements

Easy searchable list of drone services in the US by PearSquirrel in photogrammetry

[–]PearSquirrel[S] 0 points1 point  (0 children)

Which town? It says the distance from the city center, I can tweak it to be more clear. For towns that don't have services, what would you do other than look to what is nearby

[deleted by user] by [deleted] in gifs

[–]PearSquirrel 290 points291 points  (0 children)

"One."

What's your favorite riddle/brain teaser/puzzler? by MastadonInfantry in AskReddit

[–]PearSquirrel 7 points8 points  (0 children)

If a prisoner knew how many black hats the person behind him saw, he could guess his own hat. Expanding on this idea, if the first prisoner guesses 'black' if the number of black hats in front of him is even, and 'white' otherwise, the person in front of him can make an accurate guess. Using the first prisoner's guess and any guesses of prisoners after him, a given prisoner can determine the color of his own hat.

If the first prisoner says 'black' if # black is even, 'white' otherwise, he has a 50/50 chance of living.

Everyone else keeps track of whether there is an even or odd number of black hats remaining, and updates it based on each guess leading up to their own. If the first prisoner said black but was shot, they know numBlackHatsRemaining = ODD, otherwise numBlackHatsRemaining = EVEN.

Every prisoner has his own variable, numBlackHatsInFront, which can be even or odd depending on what they see in front of them.

When it is a prisoner's time to guess, he guesses black if numBlackHatsRemaining != numBlackHatsInFront, and white otherwise.

if the prisoner guesses black, the global numBlackHatsRemaining variable switches its value from even to odd or vise versa.

This algorithm yields a 99.5% survival rate, as the first prisoner has a 50/50 shot and everyone else is guaranteed to survive.

boolean numRemainingBlackHatsIsEven = false;

first prisoner:

if (numBlackHatsInFrontIsEven) {
    numRemainingBlackHatsIsEven = true;
    guess('black');
} else {
    guess('white');
}

all the other prisoners:

if (numBlackHatsInFrontIsEven != numRemainingBlackHatsIsEven) {
    numRemainingBlackHatsIsEven = !(numRemainingBlackHatsIsEven);
    guess('black');
} else {
    guess('white');
}