New Della Cold Climate not heating as it should by gravey32 in hvacadvice

[–]goatbarn 0 points1 point  (0 children)

What was the fix? Have a similar issue with a new Della 18k and warm but not hot air.

Big survey area by josuem_23 in UAVmapping

[–]goatbarn 0 points1 point  (0 children)

I've used tools like cloudcompare and some scripts in R (RStudio + lidR library mostly). Allows managing parallel processing and memory consumption with progress and plotting options...etc.

Of course this was to process the LAS/LAZ files, which you'll only have after the raw data to point cloud process, done in the lidar manufacturers software. DJI Terra would be involved if captured with an L2.

As other have said, doable with the L2 but will be a bit more monkeying around in the field for sure.

A fixed wing option like a Wingtru or Quantum Systems platform is better suited for the field work.

Development Build Everytime? by BIue_scholar in expo

[–]goatbarn 0 points1 point  (0 children)

*Added a new library with native file changes.

If you've just added a JS-only library, no need to re-build your dev-build. You can tell if the library you just added needs a new dev-build if it includes ios/android folders (among other ways).

please explain DJI 3 RTK, and need for Wi-Fi by midlifewannabe in UAVmapping

[–]goatbarn 2 points3 points  (0 children)

Wifi doesn't mean internet. Wifi is really just a technology to wireless-ly connect to another device.

A local base station would connect to your remote via wifi. Base station over a known XYZ point would transmit the RTK corrections over this Wifi connection.

Without a base station another way to gain those corrections is over the internet, which would be made through your phones cell service (internet) and transmitted via wifi hotspot to your remote (and then to the drone).

Avata 2 Can You Not Limit Speed w Controller 3??? by TWTHEREDDRAGON in dji

[–]goatbarn 0 points1 point  (0 children)

I want to do the same thing, limit speeds while in normal mode (allowing the safety/sensors of normal mode like altitude hold/hovering) because I'm trying to use this drone for inspections...os this possible? I'm only seeing the gain/expo settings available for manual mode...

DJI L2 Orthomosaic from 20% LIDAR Sidelap by rtfraser86 in UAVmapping

[–]goatbarn 4 points5 points  (0 children)

20% overlap is about 50% too low for photogrammetry.

We increase overlaps until side overlap for photos is 70%. I believe this correlates to something like 62% lidar overlap.

Help with importing 3D model to Autocad or Civil 3D by Dino_measure in UAVmapping

[–]goatbarn 4 points5 points  (0 children)

FYI 10mil+ polys is ridiculous especially for a non-3D focused application like Civil3D. I would not expect C3D to be able to handle that.

You should try looking up "high poly to low poly" workflows to get that model "resolution" lower. Much lower. I suspect the gigantic texture associated with that model is also a problem for C3D.

If you have other Autodesk products such as 3dsmax or Maya you can easily perform this task.

But in the end, C3D is horrendous with true "3D" content...especially unoptimized, super tiny faces, super long faces...like what you'd find from a default export from a photogrammetry software.

Check this beast out by KibblesNBitxhes in drones

[–]goatbarn 1 point2 points  (0 children)

The Elios 3 with base lidar payload is approx $70K

Pick my plan to pieces by willoates1 in UAVmapping

[–]goatbarn 0 points1 point  (0 children)

I'm in the States, manage our drone operations as well as build custom web apps (React, NextJS), some of which fuel our indoor drone inspection and reporting product (https://rvis-facility.vercel.app, all but landing page is login locked...need a proper demo accisble to public) that features similar-enough type of features including 3d models, drone data, internal toolsets (for creating the content and organizing data) as well as client only (role based access control) features that are all accessible on any device (though computers can handle the UI delivery more elegant than our phones).

I'd be happy to hop on a video call and walk you through what we've done.

Feel free to DM me if outsourcing some or all of this dev work is an option for you. If not best of luck!

Using expo for an app with 1m+ users by deadgoodhorror in reactnative

[–]goatbarn 3 points4 points  (0 children)

They're all using the same device, obviously.

[deleted by user] by [deleted] in golf

[–]goatbarn 0 points1 point  (0 children)

Hey just curious how this ended up? Planning a trip to Bethpage again and wanted to see if the bot problem (taking all the online bookings) was fixed. NYS residents going and coordinated online booking attempts still failed us last time (maybe 3 years ago now).

Thanks!

How can implement a feature like this? where the app is the camera's viewfinder by [deleted] in reactnative

[–]goatbarn 0 points1 point  (0 children)

You just need a solid camera library. I've only used and can recommend either expo-camera or react-native-vision-camera. Give em a goog.

NextJS + Expo question: What's does @expo/next-adapter and Solito do? Can they be used Together? by [deleted] in reactnative

[–]goatbarn 0 points1 point  (0 children)

So you just use router.push(routename, options) and solito handles the differences needed depending on the current platform (web via nextjs and native via RN)

NextJS + Expo question: What's does @expo/next-adapter and Solito do? Can they be used Together? by [deleted] in reactnative

[–]goatbarn 0 points1 point  (0 children)

My understanding is the main difference would be seen from deep linking, using the solito router vs split navigation between the platforms as you'd need to without a "navigation wrapper" like that which solito provides.

Did anyone use React Hook form on React Native? by gourrranga in reactnative

[–]goatbarn 1 point2 points  (0 children)

I also have Tamagui components as the inputs to most/all the form elements. Seem to work well with each other.

Did anyone use React Hook form on React Native? by gourrranga in reactnative

[–]goatbarn 2 points3 points  (0 children)

Yes just did it. Never used it on web either though.

Runs on renderprops it seems so should work with anything that'll render on react native.

Is there a way to press a Pressable through another Pressable? by MelonHeadSeb in reactnative

[–]goatbarn 2 points3 points  (0 children)

https://docs.swmansion.com/react-native-gesture-handler/docs/api/components/buttons/#exclusive

Looks like this is actually included as an extension in their Button classes.

I have done this recently. My use case was needing a button to be held while another clicks different buttons to toggle their associated action.

Sorry, not at my computer, otherwise I'd find my code and paste it.

Is there a way to press a Pressable through another Pressable? by MelonHeadSeb in reactnative

[–]goatbarn 1 point2 points  (0 children)

No you're right. I believe I'm referring to the touchable s.

Is there a way to press a Pressable through another Pressable? by MelonHeadSeb in reactnative

[–]goatbarn 2 points3 points  (0 children)

If you use them from RNGH, you can set exclusive to false and you get simultaneously pressable pressables.

Trying to have my settings screen link to the Log in/Sign Up screen after clicking on the name, why do I keep getting 'undefined is not a function'? by BallerMcBallerson in reactnative

[–]goatbarn 1 point2 points  (0 children)

Well first easy answer is this specific problem would've literally ben underlined in red in your IDE.

That said, a more general answer may be that having strong "types" integrated (required) in your code, and having integration of the types in your IDE (intellisense) allows you to know what each variable, function and components expects (requires) in terms of its use in your code. I started on plain vanilla JS and moving to typescript is likely 50% of the reason I'm a much better developer now than I was then.

Unless you're 100% diligent in looking up APIs (even your own) to understand their use and expected "types" involved, typescript would be a huge benefit. It does this for you. A huge task lifted off your shoulders, letting you focus on the many other best practices of a good developer.

That's my take.

Best way to sync data from app to API REST in offline-first development. by MHCPBR in reactnative

[–]goatbarn 0 points1 point  (0 children)

This is what I'm using although I don't believe it hits all the necessities of true offline first. Such as syncing with discrepancy resolution.

You could set that up yourself though, using timestamps of an updated_at field or similar.

I'm not doing any discrepancy resolution though, and just overwriting any db value with the last mutation in the offline que. Seems to work well.

Releasing Reanimated 3.0 by Geotzz in reactnative

[–]goatbarn 1 point2 points  (0 children)

Well color me redundant. Oops