Forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Paulo

Pages: [1] 2 3 ... 88
1
General / Re: Splitting up a multicam rig after the alignment process?
« on: April 17, 2024, 02:16:11 AM »
Hi Martin,

you can certainly access and export the slave cameras along with master. If you have a 5 camera rig with 1 master and 4 slaves, then chunk.cmeras[0] is master and chunk.cameras[n] with n = 1 to 4 are slaves....etc...

2
General / Re: GCP WITH DJI L1 POINT CLOUD
« on: April 16, 2024, 03:29:29 PM »
Hi Lorenzo,

my email is pap1956@gmail.com.

Looking forward to see your data.

If the Terra generated las cloud has a trajectory file, please include....

3
General / Re: GCP WITH DJI L1 POINT CLOUD
« on: April 15, 2024, 05:33:09 PM »
Hi Lorenzo,

if it is possible to share a las from L1 sensor and corresponding GCPs and I could certainly help you in this....

4
Python and Java API / Re: Apply patch on multiple shapes
« on: April 10, 2024, 08:48:31 PM »
lorenzoo,

you must define s as your selected shape as:
Code: [Select]
s = [s for s in chunk,shapes if s.selected][0]
s.geometry.coordinates[0]

5
Ok Jake.

then when you go back from CRS to internal you should  change:
Code: [Select]
bb_size = T.inv().mulp(crs.unproject(size_CRS))with:
Code: [Select]
bb_size = T.inv.scale() * size_CRS

6
Hello Matt,

at first glance, the CRS_size parameter is wrongly calculated:
Code: [Select]
size_CRS = chunk.crs.project(T.mulp(size)) # vector with point coordinates in CRSshould be changed to:
Code: [Select]
size_CRS = T.scale()*size # BB box size in real world CRS
Try and see if it can work...

7
General / Re: DEM Fill Tool
« on: April 09, 2024, 06:39:09 PM »
Dave,

seems to be some sort of bug. In constant interpolation if you use pick button and click a point just outside the red mask, the value should update and give better results...

8
General / Re: RTK Positioning accuracy with Mavic 3E
« on: April 09, 2024, 06:34:20 PM »
Quite right, Dieter

and it also helps us learn a few more deutsch words...

9
Python and Java API / Re: Apply patch on multiple shapes
« on: April 09, 2024, 02:57:27 PM »
Hi,

Yes the coordinates of shape are now defined by shape.geometry.coordinates[0]... See attachment...

10
General / Re: RTK Positioning accuracy with Mavic 3E
« on: April 09, 2024, 02:44:09 PM »
Das ist right....

My Deutch is not up to par!

11
General / Re: DEM Fill Tool
« on: April 09, 2024, 02:42:35 PM »
Strange Dave,

can you print the shape vertex coordinates? And what is shapes crs? same as dem CRS?

12
Hi Jake,

In my book, I would use  PPP (minimum 4 h) to obtain a updated and precise base station coordinates,

Then calculate the shift from original to updated position and apply this to all camera reference coordinates and then redo the workflow to generate orto...

Hope this can be helpful,

13
General / Re: DEM Fill Tool
« on: April 07, 2024, 07:36:18 AM »
Hello David.

I think the fill method is reason...You are filling the poky with constant where value is high (81 m) ... if you use other  metod (best fit, ...) you will get different results..

14
hello trelo,

iIMHO you would have to develop a script to reimport the region from a file containing its 8 vertices in Mercator projection...

15
General / Re: Basemap not load properly
« on: March 30, 2024, 08:05:15 PM »
Hello Mohamed,

the default satellite provider has low resolution. In Base Map drop down menu, select Customize... and then in Basemap List window, you can add a satellite provider (example Google) with its corresponding url...should get better resolution with Google satellite..

See also https://agisoft.freshdesk.com/support/solutions/articles/31000169660-configure-custom-basemap

Pages: [1] 2 3 ... 88