List of Contributions

George Corea

This individual is no longer active. Application functionality related to this individual is limited.

Contact Details

My Content

1 to 20 of 50+ total
Posted By George Corea 08-24-2020 06:48
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Hi Peter, Thanks for the feedback. As per my original post the actual process I noticed the difference in is loading data and themes using mapbasic and not 'wor' files. The test using the wor based code was just to show that there is a difference in the load times with publically available data and ...
Posted By George Corea 08-18-2020 22:58
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
Thanks Stefan, Peter and Bob. I've just been running some quick tests and notice that there are differences between Mapinfo (v15 and 19) loading data via a WOR and them loading the data via an MBX. I see the following 2-4 Are my initial tests with council data. 5-8 are using the StreetPro ...
Posted By George Corea 08-18-2020 22:25
Found In Egroup: MapInfo Pro
\ view thread
Thanks Peter.  For the real use case I  will be setting the width manually so it should be fine. When I try this on more complex data I get the following error. Is there something we can do to allow it to handle more complex symbology? This is using StreetPro (AUS_NSW_CLASSIC_022020) demo ...
Posted By George Corea 08-13-2020 19:05
Found In Egroup: Spectrum Spatial (SSA/LIM)
\ view thread
Thanks. I didn't notice this - did you read about how to do this in some documentation? I also can't click on features after I edit/add features and this is quite a significant bug. I'll report it to support. Also the fact that nodes seem to be added based on where you click on the polygon and ...
Posted By George Corea 08-13-2020 02:49
Found In Egroup: Spectrum Spatial (SSA/LIM)
\ view thread
I've finally got a reason to implement the editing capabilities of spectrum. I've got it to a point where I can add records using spectrum but I find that when I try to edit the shape of an object it is adding a new one rather than editing the existing object. Is something wrong with the workflow ...
Posted By George Corea 08-11-2020 00:00
Found In Egroup: MapInfo Pro
\ view thread
Thanks again Peter. I am getting the following and also I am using your v2 code unedited.  Also is there a reason the Layout has to be active? can it be made active if it isn't? Regards, ------------------------------ George Corea Mangoesmapping -------------------------- ...
Posted By George Corea 08-10-2020 01:42
Found In Egroup: MapInfo Pro
\ view thread
Thanks. That works really well. I am having an issue with creating the rectangle behind the legend items and above the map.  I've tried to get the Top Left (TL) and Bottom Right (BR) values for this box but the width doesn't work out correctly.  legend_width = LayoutItemInfo(layout_windowid, ...
Posted By George Corea 08-10-2020 01:41
Found In Library: Mapinfo Pro
Posted By George Corea 08-05-2020 18:31
Found In Egroup: Spectrum Spatial (SSA/LIM)
\ view thread
Thanks Subhash, Unfortunately I think most users want to retain the extents from one project/configuration to another. The 'real' fix is to bring back the control we had in v12 as in https://support.pb.com/help/analyst/12.2/admin_guide/en/index.html#contexts/settings.html#settings__boundsandstartingposition ...
Posted By George Corea 08-05-2020 08:18
Found In Egroup: MapInfo Pro
\ view thread
Thanks. It runs but it seems to just create some frames in the Legend Designer with no info in them. The output I am looking for is and then being able to control where this is placed in the layout. So something like this with a rectangle behind the legend elements. I've attached the ...
Posted By George Corea 08-05-2020 08:17
Found In Library: Mapinfo Pro
Posted By George Corea 08-05-2020 02:35
Found In Egroup: MapInfo Pro
\ view thread
Thanks Peter, That seems to work if we know the layers in the map but not if we don't and try to build the list. For example in the following code I get   This seems to be because both the Add Designer Frame Window and the Create Designer Legend Custom don't allow a for statement. Include ...
Posted By George Corea 07-27-2020 21:53
Found In Egroup: MapInfo Pro Developers User Group
\ view thread
I have an old 32bit code base that with some minor changes works in Mapinfo 17 and 19 -albeit in the legacy tab.  I have found that a set of tables/themes that load in about 17 seconds in v17 takes around 28 seconds in v19 It is the exact same code and data compiled in v17 to run in both 17 and 19. ...
Posted By George Corea 07-27-2020 08:32
Found In Egroup: MapInfo Pro
\ view thread
I am trying to work out how to add multiple thematic legends into a frame using mapbasic. Create Designer Legend From Window 3015 Portrait Default Frame Style "#" Font ("Arial",0,8,0) Frame From Layer 1 Frame From Layer 4 Puts all the listed layers in but to the side of the map and I can't control ...
Posted By George Corea 07-16-2020 22:37
Found In Egroup: Spectrum Spatial (SSA/LIM)
\ view thread
Hi, Just to add that I am seeing the same issue in "Spectrum Spatial™Analyst   Version 2019.1 S08" as well. In versions prior to 2018 I think there was a place to do this in Map Configs but I can't see it either in the Project Settings -- Extents tab in SSA or in spectrum (SpatialServerManager ...
Posted By George Corea 07-05-2020 23:27
Found In Egroup: MapInfo Pro
\ view thread
Thanks Anushal and Peter, I've got the code to almost what I need it to be, but the table doesn't open with it's assigned fixed theme. Is there an alternate to    table = self._pro.Catalog.OpenTable(t_path) CommonUtil.do("Add Map Auto Layer ()".format(t_list)) that will work? If I open the ...
Posted By George Corea 06-29-2020 18:39
Found In Egroup: MapInfo Pro
\ view thread
Thanks Peter. The document does help in creating the different button types for my question 2. For 1 and 3 - It's still not clear how to get clicking the button to trigger the do(Open Table) or pro.Catalog.OpenTable() command. How do I trigger this? tab = pro.Ribbon.Tabs.Add(r_item_name) ...
Posted By George Corea 06-24-2020 23:18
Found In Egroup: MapInfo Pro
\ view thread
Thanks Anshul, I had looked at this example and it was in the example code I posted. I don't want to create a full add in and would prefer to work only in python. Here's an updated code that shows where I am having issues. ### Description: Creates a new Ribbon, Group, Button and list types in Python ...
Posted By George Corea 06-17-2020 06:35
Found In Egroup: MapInfo Pro
\ view thread
Thanks for the details Peter. When you say 'You can also use the OpenTable method on the Catalog object to open a table into the current MapInfo Pro session' - how do you do this? i.e add a tab file to the current workspace in python? does it mean just do (Open Table "c:\somefile.tab" as somefile)? ...