Search the web
Sign In
New User? Sign Up
sw-gis · Smallworld Developers
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 20141 - 20190 of 20283   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#20190 From: "Burt, Joseph (GE Infra, Energy)" <joseph.burt@...>
Date: Thu Nov 19, 2009 12:17 am
Subject: RE: Raster in SW 3.3 : Color map name not defined
jburt25
Offline Offline
Send Email Send Email
 

Colour Map Name is only required for the raster_loading_acp. If you are loading into a physical grid with no compression, you should not need a color, map.

 

Alternatively, you could try loading the file a the Magik prompt using the tiff_grid_input_stream.new() you would have to create the owning record and grid_tile as well.

 

From: sw-gis@yahoogroups.com [mailto:sw-gis@yahoogroups.com] On Behalf Of Dousse, Bastien (GE Infra, Energy, Non-GE, Non-US)
Sent: Tuesday, November 17, 2009 9:36 AM
To: sw-gis@yahoogroups.com
Subject: [sw-gis] Raster in SW 3.3 : Color map name not defined

 

 

Hi all,

I'm using SW 3.3

I have an object, with a raster field :
Geometry type raster
Mandatory False
Grid type physical
Data type ds_byte
Default compression type none
Default generalisation level 4

I'm trying to load a color raster tiff file in a new record of this object, using the editor of the object, but I get an error "Color map name not defined"

I've convert the file from BMP to Tiff, without any compression, with gimp

I don't understand what is this color map name, and where it have to be defined

can anybody help me ?

thanks
Bastien


#20189 From: "Micahel J. Barrett" <michael@...>
Date: Wed Nov 18, 2009 2:38 am
Subject: RE: Re: SIAS server on Virtual Machine
michael@...
Send Email Send Email
 

We have run on Virtual Machines for some time, and have found that configuration of the hardware, software, and application is very important to have working together.  Hardware wise like most of the Smallworld applications SIAS is still behind what hardware is capable of , but the old thoughts of more RAM is better still holds.  However in virtual machines (VM or Virtual PC) you need the host machine to have enough memory available for it’s Host applications and the Virtual applications.  We have found Windows Server 2008 x64 the best stable Host. 64 bit opens up more than 3Gb of Ram, since the host should have 2Gb, and the Virtual should have 2Gb as minimums, and even more with Citrix since connections use Memory, 64bit is required.   Okay, GE may or may not recommend 64 bit, but after 11 months I can say it is much better than trying to squeeze a 32 bit system.  Next the CPU / Motherboard should have the VT options built in and TURNED ON, you will need to check the bios for that.  This means that you should be running the virtual machine on a mid-level server bought in the last 18 months.  There are many other tips that with some Google searches you should find.  We found roughly 10% performance gain in upgrading to Windows server 2008, vs 2003. We upgraded to Enterprise and it gave us about another 3% gain on HDD throughput.  I would recommend running the virtual machine with at least 2 Gb Ram, on an 6-8gb host, with RAID 0 or 10 for the speed increase.  Don’t forget to configure the SIAS environment to max memory at 1gb.  Then depending on number of clients, how they use SIAS, i.e. many small changes all the time, bursts in morning and evenings, or heavy use with traces, you need to tune the server to fit your requirements. 

 

I hope that you find this useful

 

Very Best Regards,

 

Michael J. Barrett

 

From: sw-gis@yahoogroups.com [mailto:sw-gis@yahoogroups.com] On Behalf Of naran500
Sent: Wednesday, November 18, 2009 00:34
To: sw-gis@yahoogroups.com
Subject: [sw-gis] Re: SIAS server on Virtual Machine

 

 

We have the mid-tier (JBoss) running on a virtual server. It's a little bit slower, but it works.

For our development environment, we have only one magik service provider (MSP) server which is a Citrix running inside a VMWare virtual machine. Performance took a significant hit, but we can't be sure where the bottleneck is.

We've also had some problems on the MSP back-end where sometimes the service hangs and we had to manually kill the processes and re-start the MSP back-end. We did have this problem before the server was virtualized, but it seems more frequent now.

The thing is, our other Citrix apps on that server were also unacceptably slow. We will be devirtualizing that server soon.

--- In sw-gis@yahoogroups.com, "rationalrup2000" <rationalrup@...> wrote:
>
> Hi,
>
> Is there any customer using SIAS server (we will use SIAS 4.1.2) on a virtual machine. I have heard SIAS relies heavily on the hardware graphic capability. If hosts SIAS on virtual machine, the performance will have a big hit. Is that correct? Anyone else has the same problem?
>
> Thanks,
>
> Jacques
>



__________ Information from ESET Smart Security, version of virus signature database 4614 (20091117) __________

The message was checked by ESET Smart Security.

http://www.eset.com


#20188 From: "rodrigo.aguerre" <rodrigo.aguerre@...>
Date: Tue Nov 17, 2009 6:55 pm
Subject: Re: Refresh SIAS client side image
rodrigo.aguerre
Offline Offline
Send Email Send Email
 
When I was trying to develop a module in which I loaded a new image to display
on the map some time ago, I had a similar problem, I generated the image but the
map didn't refresh itself. When I fired the event myself it started to work, I
think you have to explicity fire this event when you change the map data in your
code. The only difference between your code and mine is that you make a service
invocation from your ServiceWrapper and I directly call the MapServiceWrapper, I
never made a service invocation to load a new image on the map like what you are
trying to do, but I don't see what's the problem with your code. Try using the
MapServiceWrapper insted and see if that works, here is a portion of code of my
delegate class:

// Obtengo las coordenadas
Double[] coords = wrapper.zoom_cruce(calle, cruce, dataset);

// MapDelegate
IMapDelegate mapDelegate = (IMapDelegate) getCore().getDelegate("MapDelegate");

// Creo el map wrapper
MapServiceWrapper mapWrapper = new MapServiceWrapper();
mapWrapper.setCore(this.getCore());

// Obtengo parametros del mapa para carga inicial
Hashtable<String, Object> params = mapDelegate.getInitialMapParams();

// Agrego parametro snap_to_scale
if (mapDelegate.isCached()) {
    	 params.put("snap_to_scale", Boolean.TRUE);
}

Double coord_x = coords[0];
Double coord_y = coords[1];

// Ejecuto la accion de ir
mapWrapper.requestMap(IMapDelegate.MAP_NAME, coord_x, coord_y, 1000, 0, params);
this.getCore().fireEvent("map-data-changed");

#20187 From: "naran500" <travers.naran@...>
Date: Tue Nov 17, 2009 5:33 pm
Subject: Re: SIAS server on Virtual Machine
naran500
Offline Offline
Send Email Send Email
 
We have the mid-tier (JBoss) running on a virtual server.  It's a little bit
slower, but it works.

For our development environment, we have only one magik service provider (MSP)
server which is a Citrix running inside a VMWare virtual machine.  Performance
took a significant hit, but we can't be sure where the bottleneck is.

We've also had some problems on the MSP back-end where sometimes the service
hangs and we had to manually kill the processes and re-start the MSP back-end. 
We did have this problem before the server was virtualized, but it seems more
frequent now.

The thing is, our other Citrix apps on that server were also unacceptably slow. 
We will be devirtualizing that server soon.

--- In sw-gis@yahoogroups.com, "rationalrup2000" <rationalrup@...> wrote:
>
> Hi,
>
> Is there any customer using SIAS server (we will use SIAS 4.1.2) on a virtual
machine. I have heard SIAS relies heavily on the hardware graphic capability. If
hosts SIAS on virtual machine, the performance will have a big hit. Is that
correct? Anyone else has the same problem?
>
> Thanks,
>
> Jacques
>

#20186 From: "kitti_kadam" <kitti_kadam@...>
Date: Tue Nov 17, 2009 4:43 pm
Subject: Re: Refresh SIAS client side image
kitti_kadam
Offline Offline
Send Email Send Email
 
Hi..
     Adding the line this.getCore().fireEvent("map-data-changed");" to the code
didnot make any difference..there z no change in the map...

I think, event "map-data-changed" automatically gets fired once after there is
change in the map...So can u tell me wats d need of explictly firing this
event??

#20185 From: "bastien.dousse" <bastien.dousse@...>
Date: Tue Nov 17, 2009 4:36 pm
Subject: Raster in SW 3.3 : Color map name not defined
bastien.dousse
Offline Offline
Send Email Send Email
 
Hi all,

I'm using SW 3.3

I have an object, with a raster field :
Geometry type raster
Mandatory False
Grid type physical
Data type ds_byte
Default compression type none
Default generalisation level 4

I'm trying to load a color raster tiff file in a new record of this object,
using the editor of the object, but I get an error "Color map name not defined"

I've convert the file from BMP to Tiff, without any compression, with gimp

I don't understand what is this color map name, and where it have to be defined

can anybody help me ?

thanks
Bastien

#20174 From: Paul <paulmare@...>
Date: Tue Nov 17, 2009 11:23 am
Subject: Re: Re: HELP FOR DEVELOPING A NEW APPLICATION
paul_man12003
Offline Offline
Send Email Send Email
 
yes
just change the text method of the schematics nodes to display what you need  

On Tue, Nov 17, 2009 at 1:20 PM, gisadmin turbhe <gisadmin.turbhe.TTML@...> wrote:

hi

 

thanks for the reply

 

I have query regarding schematics, can we display multiple annotation for single object?

suppose, I have a building and I am able to display its name ,as shown in below snapshot.now, I need to display other fields related to that building also ex : lat-long values,nearby location etc. and these fields are available in field editor of  object building. Is it possible to display them?

 

 

 

 

 

 

 

 

 

 

Thanks & Regards

   PRATIKSHA

 


From: mazahir dohadwalla [mailto:dmazahir@...]
Sent: Tuesday, November 03, 2009 7:39 AM
To: gisadmin turbhe
Subject: Fw: Re: [sw-gis] HELP FOR DEVELOPING A NEW APPLICATION

 



--- On Tue, 3/11/09, Paul <paulmare@...> wrote:


From: Paul <paulmare@...>
Subject: Re: [sw-gis] HELP FOR DEVELOPING A NEW APPLICATION
To: sw-gis@yahoogroups.com
Date: Tuesday, 3 November, 2009, 12:15 AM

 

hi

 

I do not know if I understood correctly your question

 

I would check in your attached file

_method connectivity_ finder_gui_ plugin.build_ input_gui - see there the display trees - you have to change them. You can add there anything you want - you can create your own style dstring with a custom draw renderer or a raster image or any string you like in any colour - i think you will just want to change the values with a different string 

If you want to see how the schematics is creating labels - check for spni_label_text( ) - is just the name of building - then annotated with the name of collection 

good luck

 

 

 

 

On Mon, Nov 2, 2009 at 5:43 PM, mazahir dohadwalla <dmazahir@yahoo. co.in> wrote:

 

[Attachment(s) from mazahir dohadwalla included below]

 

Hi,

 
We are developing a tool which is intended to provide existing connectivity between two network buildings given by the user.
The engine which is actually finding out these connectivity and gui plugin for display and menu items  is attached.
Snapshot of the output is as shown below:
 
Snapshot 1:
 

 
Here source building : TATA_TELE_(M) _LTD-MUMBAI  is gis site .  
It is connected to various gis buildings and terminal enclousures through copper cables.
All these objects which are connected to source building are displayed in the window (route).    (objects like gis bldg,terminal enclousures and copper cables)
Menu item Goto and highlight is there to view the listed objects in  main  map view
i.e when we select TECHNOPOLIS_ RT in output list and click Goto and Highlight that object appear in main view as shown below.
 
 
Snapshot 2:
 
 

 
Our requirement is to display output in the form of schematics in floating window  instead of listed format as shown in snapshot 1.
Schematics will be as shown below:
 
 

 
i.e  instead of displaying names of the connected objects we need to display them in the form of symbols with annotation as shown above, and goto option should be there . Is it possible to do so ? plz suggest way of doing it.
 
 

 


From cricket scores to your friends. Try the Yahoo! India Homepage!

 




From cricket scores to your friends. Try the Yahoo! India Homepage!

======================================
i-choose online store at www.tataindicom.com
Your Comfort. Your Convenience. Your Choice.
======================================

DISCLAIMER:
The information contained in this message (including any attachments) is confidential and may be privileged. If you have received it by mistake please notify the sender by return e-mail and permanently delete this message and any attachments from your system. Any dissemination, use, review, distribution, printing or copying of this message in whole or in part is strictly prohibited. Please note that e-mails are susceptible to change. TATA TELESERVICES LTD. (including its group companies) shall not be liable for the improper or incomplete transmission of the information contained in this communication nor for any delay in its receipt or damage to your system. TATA TELESERVICES LTD. (or its group companies) does not guarantee that the integrity of this communication has been maintained or that this communication is free of viruses, interceptions or interferences.



#20173 From: "rationalrup2000" <rationalrup@...>
Date: Tue Nov 17, 2009 4:29 am
Subject: SIAS server on Virtual Machine
rationalrup2000
Offline Offline
Send Email Send Email
 
Hi,

Is there any customer using SIAS server (we will use SIAS 4.1.2) on a virtual
machine. I have heard SIAS relies heavily on the hardware graphic capability. If
hosts SIAS on virtual machine, the performance will have a big hit. Is that
correct? Anyone else has the same problem?

Thanks,

Jacques

#20172 From: "rodrigo.aguerre" <rodrigo.aguerre@...>
Date: Mon Nov 16, 2009 7:26 pm
Subject: Re: Refresh SIAS client side image
rodrigo.aguerre
Offline Offline
Send Email Send Email
 
Did you tried to put this line "this.getCore().fireEvent("map-data-changed");"
after the line "wrapper.request();" on your delegate code?

--- In sw-gis@yahoogroups.com, "kitti_kadam" <kitti_kadam@...> wrote:
>
>
>
> Hi..
>
> thanks 4 d reply...
>
> The following lines of code myt help u understanding my problem...
>
> request method in Bean class is
>
> request()
> {
>     this.startMainRequest("HighlightObjects");
>     delegate.request();
>     this.endMainRequest("HighlightObjects");
> }
>
> request method in Delegate class
>
>  request()
>  {
>     wrapper.request();
>     return;
> }
>
> public void request()
> {
>
>   Hashtable<String, Object> params = new Hashtable<String, Object>();
>   ArrayList<String> objects=new ArrayList<String>();
>   objects.add("
swrefVrecordVdatasetZgisVcollectionZpub_restVkeysZThe$0020J5aebraQMaids$0020Caus\
eway ");
>
>    params.put("map_update","zoom");
>    params.put("map_name","Main-Map");
>    params.put("colour","green");
>    params.put("objects",objects);
>    params.put("name","testmap");
>
>   try
>   {
>    Response response = request("ejb/HighlightLocal", "highlightObjects",
params);
>   }
>   catch(Exception e)
>    {
>    }
>
>    return;
> }
>
> On executing these above LOC, an image is generated with pub being highlighted
in green color and is stored in a temp folder.
> how can i refresh SIAS client image with this new image??
> what myt b missing in my code???pls help me out...
>

#20171 From: "kitti_kadam" <kitti_kadam@...>
Date: Mon Nov 16, 2009 5:21 pm
Subject: Re: Refresh SIAS client side image
kitti_kadam
Offline Offline
Send Email Send Email
 
Hi..

thanks 4 d reply...

The following lines of code myt help u understanding my problem...

request method in Bean class is

request()
{
     this.startMainRequest("HighlightObjects");
     delegate.request();
     this.endMainRequest("HighlightObjects");
}

request method in Delegate class

  request()
  {
     wrapper.request();
     return;
}

public void request()
{

   Hashtable<String, Object> params = new Hashtable<String, Object>();
   ArrayList<String> objects=new ArrayList<String>();
   objects.add("
swrefVrecordVdatasetZgisVcollectionZpub_restVkeysZThe$0020J5aebraQMaids$0020Caus\
eway ");

    params.put("map_update","zoom");
    params.put("map_name","Main-Map");
    params.put("colour","green");
    params.put("objects",objects);
    params.put("name","testmap");

   try
   {
    Response response = request("ejb/HighlightLocal", "highlightObjects",
params);
   }
   catch(Exception e)
    {
    }

    return;
}

On executing these above LOC, an image is generated with pub being highlighted
in green color and is stored in a temp folder.
how can i refresh SIAS client image with this new image??
what myt b missing in my code???pls help me out...

#20170 From: abhi cutelaugh <abhi_cutelaugh@...>
Date: Mon Nov 16, 2009 3:55 pm
Subject: Re:
abhi_cutelaugh
Online Now Online Now
Send Email Send Email
 
smallworld core inculed with travel_sales_prson algorithm in triangulation  moduule.. this may help you...
 
or else similar aplication caalled "Route Manager" is available in GDO... it is campatible with any application with minimumm changes...
 


The INTERNET now has a personality. YOURS! See your Yahoo! Homepage.

#20169 From: "naran500" <travers.naran@...>
Date: Mon Nov 16, 2009 8:59 am
Subject: Re: Cheapest Route - I need your Suggestions
naran500
Offline Offline
Send Email Send Email
 
You might want to check out the "costing" features of the network tracer.  You
can create a method on your RWO exemplar that tells the network tracer how much
it costs to follow that route, and with a couple extra options passed into the
network follower engine, it will find the cheapest route.

--- In sw-gis@yahoogroups.com, "bryanjkdelossantos" <bryanjkdelossantos@...>
wrote:
>
> Hi,
>
> I just want to get your suggestions on this work of mine. You see, there is
this function that I want to do in SW. Im creating an application right now
regarding a delivery tracking support. I have this roads, railways and air
routes which i will use to determine the path of the package / delivery. Based
on the distance, there would be corresponding costs (Mileage).
>
> As for the requirement, there are two types of service, Express (Shortest
Route) and Standard (Cheapest Cost). For express, I just perform the shortest
route trace to determine the delivery path. Now, I want to ask for your
suggestion on how am I going to implement the standard service so I can
determine the cheapest route.
>
> Thanks,
> Bryan Jay Delos Santos
> Junior GIS Engineer
>

#20168 From: "bryanjkdelossantos" <bryanjkdelossantos@...>
Date: Mon Nov 16, 2009 6:41 am
Subject: Cheapest Route - I need your Suggestions
bryanjkdelos...
Offline Offline
Send Email Send Email
 
Hi,

I just want to get your suggestions on this work of mine. You see, there is this
function that I want to do in SW. Im creating an application right now regarding
a delivery tracking support. I have this roads, railways and air routes which i
will use to determine the path of the package / delivery. Based on the distance,
there would be corresponding costs (Mileage).

As for the requirement, there are two types of service, Express (Shortest Route)
and Standard (Cheapest Cost). For express, I just perform the shortest route
trace to determine the delivery path. Now, I want to ask for your suggestion on
how am I going to implement the standard service so I can determine the cheapest
route.

Thanks,
Bryan Jay Delos Santos
Junior GIS Engineer

#20157 From: "bryanjkdelossantos" <bryanjkdelossantos@...>
Date: Mon Nov 16, 2009 6:40 am
Subject: I need your Suggestions
bryanjkdelos...
Offline Offline
Send Email Send Email
 
Hi,

I just want to get your suggestions on this work of mine. You see, there is this
function that I want to do in SW. Im creating an application right now regarding
a delivery tracking support. I have this roads, railways and air routes which i
will use to determine the path of the package / delivery. Based on the distance,
there would be corresponding costs (Mileage).

As for the requirement, there are two types of service, Express (Shortest Route)
and Standard (Cheapest Cost). For express, I just perform the shortest route
trace to determine the delivery path. Now, I want to ask for your suggestion on
how am I going to implement the standard service so I can determine the cheapest
route.

Thanks,
Bryan Jay Delos Santos
Junior GIS Engineer

#20156 From: "robertdlilley2002" <robert1.lilley@...>
Date: Fri Nov 13, 2009 9:15 pm
Subject: Re: Creating Symbols
robertdlille...
Offline Offline
Send Email Send Email
 
I generally don't use Fixed styles as a rule. But if you have implemented all
your point styles at a 1m x 1m set of symbol components (good idea in my
opinion), then yes you can change the overall magnification of the various
display scales in the ACE.
Bring up the ACE dialog and select the Display Styles (Scale Configuration)
dialog where you can modify the magnification of ALL the styles at once for a
particular Display Scale.

NOTE: this magnification factor is used in conjunction with the magnification of
each point style as well.

Rob

--- In sw-gis@yahoogroups.com, "bryanjkdelossantos" <bryanjkdelossantos@...>
wrote:
>
> Thanks for that Rob. However, VHS settings are turned on. Another thing is it
still doesnt work if ever I change the magnification. What I did is to set it to
"Fixed Size" and it work. If I set everything to "Fixed Size", I have to change
the magnification settings to every scale in styles. Would there be any way that
it automatically synchronize with the scales as I change views?
>
> --- In sw-gis@yahoogroups.com, "robertdlilley2002" <robert1.lilley@> wrote:
> >
> > You may want to check that the ACE VHS settings are turned on in the Object
Control for the airport geometries. Otherwise, try increasing the Magnification
in the Point Style Editor and see if that helps.
> > Good luck.
> >
> > Rob Lilley
> >
> > --- In sw-gis@yahoogroups.com, "bryanjkdelossantos" <bryanjkdelossantos@>
wrote:
> > >
> > > Hi!
> > >
> > > Right now, i'm studying smallworld. Though, this is a small problem for
others, I just can't help but seek answers to my problem. Im having problems
with creating a symbol for an airport(point). Here is what happens. I created a
symbol for a point. it is 1m by 1m. When I applied it and created a symbol. All
i see is a single point. My linear coordinate units and length units is in
metres. What could be wrong?
> > >
> >
>

#20155 From: "bryanjkdelossantos" <bryanjkdelossantos@...>
Date: Fri Nov 13, 2009 8:58 pm
Subject: Re: Creating Symbols
bryanjkdelos...
Offline Offline
Send Email Send Email
 
Thanks for that Rob. However, VHS settings are turned on. Another thing is it
still doesnt work if ever I change the magnification. What I did is to set it to
"Fixed Size" and it work. If I set everything to "Fixed Size", I have to change
the magnification settings to every scale in styles. Would there be any way that
it automatically synchronize with the scales as I change views?

--- In sw-gis@yahoogroups.com, "robertdlilley2002" <robert1.lilley@...> wrote:
>
> You may want to check that the ACE VHS settings are turned on in the Object
Control for the airport geometries. Otherwise, try increasing the Magnification
in the Point Style Editor and see if that helps.
> Good luck.
>
> Rob Lilley
>
> --- In sw-gis@yahoogroups.com, "bryanjkdelossantos" <bryanjkdelossantos@>
wrote:
> >
> > Hi!
> >
> > Right now, i'm studying smallworld. Though, this is a small problem for
others, I just can't help but seek answers to my problem. Im having problems
with creating a symbol for an airport(point). Here is what happens. I created a
symbol for a point. it is 1m by 1m. When I applied it and created a symbol. All
i see is a single point. My linear coordinate units and length units is in
metres. What could be wrong?
> >
>

#20154 From: "robertdlilley2002" <robert1.lilley@...>
Date: Fri Nov 13, 2009 8:01 pm
Subject: Re: Creating Symbols
robertdlille...
Offline Offline
Send Email Send Email
 
You may want to check that the ACE VHS settings are turned on in the Object
Control for the airport geometries. Otherwise, try increasing the Magnification
in the Point Style Editor and see if that helps.
Good luck.

Rob Lilley

--- In sw-gis@yahoogroups.com, "bryanjkdelossantos" <bryanjkdelossantos@...>
wrote:
>
> Hi!
>
> Right now, i'm studying smallworld. Though, this is a small problem for
others, I just can't help but seek answers to my problem. Im having problems
with creating a symbol for an airport(point). Here is what happens. I created a
symbol for a point. it is 1m by 1m. When I applied it and created a symbol. All
i see is a single point. My linear coordinate units and length units is in
metres. What could be wrong?
>

#20153 From: "bryanjkdelossantos" <bryanjkdelossantos@...>
Date: Fri Nov 13, 2009 7:54 pm
Subject: Creating Symbols
bryanjkdelos...
Offline Offline
Send Email Send Email
 
Hi!

Right now, i'm studying smallworld. Though, this is a small problem for others,
I just can't help but seek answers to my problem. Im having problems with
creating a symbol for an airport(point). Here is what happens. I created a
symbol for a point. it is 1m by 1m. When I applied it and created a symbol. All
i see is a single point. My linear coordinate units and length units is in
metres. What could be wrong?

#20152 From: "rodrigo.aguerre" <rodrigo.aguerre@...>
Date: Thu Nov 12, 2009 7:18 pm
Subject: Re: Refresh SIAS client side image
rodrigo.aguerre
Offline Offline
Send Email Send Email
 
Hi, I'm not sure I understand what your problem is. You generate a new image to
display on the map but the it doesn't refresh it?. If that's the case, I had the
same problem some time ago. Perhaps you are missing some of this things: after
you load your image on your delegate class, let's say  you use the method
requestMap of the MapServiceWrapper, you have to fire the event map-data-changed
with this line:

this.getCore().fireEvent("map-data-changed");

You also have to put this code on the invocation of your delegate method, in
your Bean class:

this.startMainRequest("my_request_id");
delegate.my_method(...);
this.endMainRequest("my_request_id");

Hope that helps.

--- In sw-gis@yahoogroups.com, "kitti_kadam" <kitti_kadam@...> wrote:
>
> When we call map method of map service from client side,
> an image is generated and stored in default folder. How can i refresh  Client
side image with this newly generated image??
>

#20151 From: "Bruce Morehouse" <BruceM@...>
Date: Thu Nov 12, 2009 3:34 pm
Subject: RE: Sorting an Excel Spreadsheet
BruceM@...
Send Email Send Email
 

Chris,

 

I concur with Alfred’s suggestion of starting with the macro recorder.

 

Something I’ve done is to embed macros in the Excel spreadsheet (assuming I’m opening a template), and then just invoking the macro.

 

Where appropriate, this allows the modification of the spreadsheet without modifying magik.

 

Bruce,

InMaps

 


From: sw-gis@yahoogroups.com [mailto:sw-gis@yahoogroups.com] On Behalf Of Alfred Sawatzky
Sent: Thursday, November 12, 2009 8:25 AM
To: sw-gis@yahoogroups.com
Subject: RE: [sw-gis] Sorting an Excel Spreadsheet

 

 

Hi Chris,

 

So the first thing I always do when trying to figure out OLE code in Magik is to turn on the Excel Macro recorder and do the steps manually to see what VBA code is recommended by Excel.  When I took your actions, the code looked like this…

 

Sub Macro2()

'

' Macro2 Macro

'

 

'

    Columns("A:A").Select

    ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Clear

    ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range("A2:A17") _

        , SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal

    With ActiveWorkbook.Worksheets("Sheet1").Sort

        .SetRange Range("A1:A17")

        .Header = xlYes

        .MatchCase = False

        .Orientation = xlTopToBottom

        .SortMethod = xlPinYin

        .Apply

    End With

End Sub

 

I selected column “A”

I chose the menu options to sort with a header

Interestingly enough, the .SetRange is automatically changed to A1:A17 instead of Columns(“A:A”).  So even though I selected the entire column, the underlying code seems to run the sort on a very well-defined Range.

 

So maybe your error is happening because you are defining a column instead of a well-defined Range.

 

Regards,

 

Alfred

 

From: sw-gis@yahoogroups.com [mailto:sw-gis@yahoogroups.com] On Behalf Of cwellfair
Sent: Thursday, November 12, 2009 2:48 AM
To: sw-gis@yahoogroups.com
Subject: [sw-gis] Sorting an Excel Spreadsheet

 

 

I'm trying to sort an Excel spreadsheet via the OLE Client. It works to some degree, but I haven't been able to retain a header row. Methodology is as follows:

# .sheet is the Active Sheet

_local l_cell << .sheet.Range ( "A2" )

l_cell.sort ( .sheet.columns ( "A" ),
:xlAscending,
_unset,
_unset,
_unset,
_unset,
_unset,
:xlYes )

The Excel help tells me that arguments for the 8th parameter (header) should be one of :xlYes, :xlNo or :xlGuess. If I use any of these, the method errors:

**** Error: Automation Server error bad_usage for method sort(). Server error: 0x80020009 - Exception occurred. Microsoft Excel(0x800A03EC): Reference is not valid.
ole_server_error(message="sort()", code=:bad_usage, ole_error="0x80020009 - Exception occurred.", ole_reason="Microsoft Excel(0x800A03EC): Reference is not valid.")

---- traceback: cli (heavy_thread 1357667) ----
time=12/11/2009 09:39:56
sw!version=4.1.0 (swaf)
os_text_encoding=cp1252
!snapshot_traceback?!=False

condition(information).raise(:ole_server_error, {:message, "sort()", :code, :bad_usage, ... <size=8>})
ole_collection (Excel_Range).does_not_understand(a sw:message, False)
ole_collection (Excel_Range).sys!send_error(:|sort()|, method_table for sw:ole_collection, False, 1, sw:simple_vector:[1-8])
a bw_excel_interface.sort()
*** top level ***()
a sw:magik_rep.process(sw:simple_vector:[1-5])
a sw:magik_rep.cli(a sw:terminal, "MagikSF> ")
cli()
light_thread_launcher_proc_990928()

If I use any other value, it ignores it and the method runs. However, Excel defaults to xlNo (i.e. a sort without a header row).

Has anyone used this successfully? My versions are CST 4.1 and Excel 2000.

Cheers,
Chris


#20150 From: "cwellfair" <chris.wellfair@...>
Date: Thu Nov 12, 2009 3:12 pm
Subject: Re: Sorting an Excel Spreadsheet
cwellfair
Offline Offline
Send Email Send Email
 
Hi Alfred,

I use the same method of creating a macro, and that coupled with the Excel VBA
help means I've always been able to do pretty much what I want.

Interestingly, the macro my actions create is somewhat different to yours:

Sub Macro1()
'
' Macro1 Macro
' Macro recorded 12/11/2009 by cw
'

'
     Columns("A:A").Select
     Selection.Sort Key1:=Range("A2"), Order1:=xlAscending, Header:=xlGuess, _
         OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
End Sub


I have taken note of your point that I was using columns rather than a specific
range and have tried various permutations including one cell, a range of cells,
selecting the cells, the UsedRange etc., but still no joy. I've also called the
sort method on different objects (for example, my macro does it via selection).
The one thing that particularly annoys me is that when I do the sort manually
the header defaults to xlGuess - if it did that through the code then I wouldn't
have the problem.

In the meantime I have implemented a workaround, whereby I create a new
worksheet, move the header there, sort the values without the header, then bring
it back and delete the extra worksheet. A bit Heath Robinson, but it gets there
in the end!

Cheers,
Chris


--- In sw-gis@yahoogroups.com, Alfred Sawatzky <alfred@...> wrote:
>
> Hi Chris,
>
> So the first thing I always do when trying to figure out OLE code in Magik is
to turn on the Excel Macro recorder and do the steps manually to see what VBA
code is recommended by Excel.  When I took your actions, the code looked like
this...
>
> Sub Macro2()
> '
> ' Macro2 Macro
> '
>
> '
>     Columns("A:A").Select
>     ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Clear
>     ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add
Key:=Range("A2:A17") _
>         , SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
>     With ActiveWorkbook.Worksheets("Sheet1").Sort
>         .SetRange Range("A1:A17")
>         .Header = xlYes
>         .MatchCase = False
>         .Orientation = xlTopToBottom
>         .SortMethod = xlPinYin
>         .Apply
>     End With
> End Sub
>
> I selected column "A"
> I chose the menu options to sort with a header
> Interestingly enough, the .SetRange is automatically changed to A1:A17 instead
of Columns("A:A").  So even though I selected the entire column, the underlying
code seems to run the sort on a very well-defined Range.
>
> So maybe your error is happening because you are defining a column instead of
a well-defined Range.
>
> Regards,
>
> Alfred
>
> From: sw-gis@yahoogroups.com [mailto:sw-gis@yahoogroups.com] On Behalf Of
cwellfair
> Sent: Thursday, November 12, 2009 2:48 AM
> To: sw-gis@yahoogroups.com
> Subject: [sw-gis] Sorting an Excel Spreadsheet
>
>
>
> I'm trying to sort an Excel spreadsheet via the OLE Client. It works to some
degree, but I haven't been able to retain a header row. Methodology is as
follows:
>
> # .sheet is the Active Sheet
>
> _local l_cell << .sheet.Range ( "A2" )
>
> l_cell.sort ( .sheet.columns ( "A" ),
> :xlAscending,
> _unset,
> _unset,
> _unset,
> _unset,
> _unset,
> :xlYes )
>
> The Excel help tells me that arguments for the 8th parameter (header) should
be one of :xlYes, :xlNo or :xlGuess. If I use any of these, the method errors:
>
> **** Error: Automation Server error bad_usage for method sort(). Server error:
0x80020009 - Exception occurred. Microsoft Excel(0x800A03EC): Reference is not
valid.
> ole_server_error(message="sort()", code=:bad_usage, ole_error="0x80020009 -
Exception occurred.", ole_reason="Microsoft Excel(0x800A03EC): Reference is not
valid.")
>
> ---- traceback: cli (heavy_thread 1357667) ----
> time=12/11/2009 09:39:56
> sw!version=4.1.0 (swaf)
> os_text_encoding=cp1252
> !snapshot_traceback?!=False
>
> condition(information).raise(:ole_server_error, {:message, "sort()", :code,
:bad_usage, ... <size=8>})
> ole_collection (Excel_Range).does_not_understand(a sw:message, False)
> ole_collection (Excel_Range).sys!send_error(:|sort()|, method_table for
sw:ole_collection, False, 1, sw:simple_vector:[1-8])
> a bw_excel_interface.sort()
> *** top level ***()
> a sw:magik_rep.process(sw:simple_vector:[1-5])
> a sw:magik_rep.cli(a sw:terminal, "MagikSF> ")
> cli()
> light_thread_launcher_proc_990928()
>
> If I use any other value, it ignores it and the method runs. However, Excel
defaults to xlNo (i.e. a sort without a header row).
>
> Has anyone used this successfully? My versions are CST 4.1 and Excel 2000.
>
> Cheers,
> Chris
>

#20149 From: Alfred Sawatzky <alfred@...>
Date: Thu Nov 12, 2009 1:24 pm
Subject: RE: Sorting an Excel Spreadsheet
alfred_sawatzky
Offline Offline
Send Email Send Email
 

Hi Chris,

 

So the first thing I always do when trying to figure out OLE code in Magik is to turn on the Excel Macro recorder and do the steps manually to see what VBA code is recommended by Excel.  When I took your actions, the code looked like this…

 

Sub Macro2()

'

' Macro2 Macro

'

 

'

    Columns("A:A").Select

    ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Clear

    ActiveWorkbook.Worksheets("Sheet1").Sort.SortFields.Add Key:=Range("A2:A17") _

        , SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal

    With ActiveWorkbook.Worksheets("Sheet1").Sort

        .SetRange Range("A1:A17")

        .Header = xlYes

        .MatchCase = False

        .Orientation = xlTopToBottom

        .SortMethod = xlPinYin

        .Apply

    End With

End Sub

 

I selected column “A”

I chose the menu options to sort with a header

Interestingly enough, the .SetRange is automatically changed to A1:A17 instead of Columns(“A:A”).  So even though I selected the entire column, the underlying code seems to run the sort on a very well-defined Range.

 

So maybe your error is happening because you are defining a column instead of a well-defined Range.

 

Regards,

 

Alfred

 

From: sw-gis@yahoogroups.com [mailto:sw-gis@yahoogroups.com] On Behalf Of cwellfair
Sent: Thursday, November 12, 2009 2:48 AM
To: sw-gis@yahoogroups.com
Subject: [sw-gis] Sorting an Excel Spreadsheet

 

 

I'm trying to sort an Excel spreadsheet via the OLE Client. It works to some degree, but I haven't been able to retain a header row. Methodology is as follows:

# .sheet is the Active Sheet

_local l_cell << .sheet.Range ( "A2" )

l_cell.sort ( .sheet.columns ( "A" ),
:xlAscending,
_unset,
_unset,
_unset,
_unset,
_unset,
:xlYes )

The Excel help tells me that arguments for the 8th parameter (header) should be one of :xlYes, :xlNo or :xlGuess. If I use any of these, the method errors:

**** Error: Automation Server error bad_usage for method sort(). Server error: 0x80020009 - Exception occurred. Microsoft Excel(0x800A03EC): Reference is not valid.
ole_server_error(message="sort()", code=:bad_usage, ole_error="0x80020009 - Exception occurred.", ole_reason="Microsoft Excel(0x800A03EC): Reference is not valid.")

---- traceback: cli (heavy_thread 1357667) ----
time=12/11/2009 09:39:56
sw!version=4.1.0 (swaf)
os_text_encoding=cp1252
!snapshot_traceback?!=False

condition(information).raise(:ole_server_error, {:message, "sort()", :code, :bad_usage, ... <size=8>})
ole_collection (Excel_Range).does_not_understand(a sw:message, False)
ole_collection (Excel_Range).sys!send_error(:|sort()|, method_table for sw:ole_collection, False, 1, sw:simple_vector:[1-8])
a bw_excel_interface.sort()
*** top level ***()
a sw:magik_rep.process(sw:simple_vector:[1-5])
a sw:magik_rep.cli(a sw:terminal, "MagikSF> ")
cli()
light_thread_launcher_proc_990928()

If I use any other value, it ignores it and the method runs. However, Excel defaults to xlNo (i.e. a sort without a header row).

Has anyone used this successfully? My versions are CST 4.1 and Excel 2000.

Cheers,
Chris


#20148 From: "cwellfair" <chris.wellfair@...>
Date: Thu Nov 12, 2009 9:48 am
Subject: Sorting an Excel Spreadsheet
cwellfair
Offline Offline
Send Email Send Email
 
I'm trying to sort an Excel spreadsheet via the OLE Client. It works to some
degree, but I haven't been able to retain a header row. Methodology is as
follows:

	 # .sheet is the Active Sheet

	 _local l_cell << .sheet.Range ( "A2" )

	 l_cell.sort ( .sheet.columns ( "A" ),
			 :xlAscending,
			 _unset,
			 _unset,
			 _unset,
			 _unset,
			 _unset,
			 :xlYes )

The Excel help tells me that arguments for the 8th parameter (header) should be
one of :xlYes, :xlNo or :xlGuess. If I use any of these, the method errors:

**** Error: Automation Server error bad_usage for method sort(). Server error:
0x80020009 - Exception occurred. Microsoft Excel(0x800A03EC): Reference is not
valid.
      ole_server_error(message="sort()", code=:bad_usage, ole_error="0x80020009 -
Exception occurred.", ole_reason="Microsoft Excel(0x800A03EC): Reference is not
valid.")

---- traceback: cli (heavy_thread 1357667) ----
time=12/11/2009 09:39:56
sw!version=4.1.0  (swaf)
os_text_encoding=cp1252
!snapshot_traceback?!=False

condition(information).raise(:ole_server_error, {:message, "sort()", :code,
:bad_usage, ... <size=8>})
ole_collection (Excel_Range).does_not_understand(a sw:message, False)
ole_collection (Excel_Range).sys!send_error(:|sort()|, method_table for
sw:ole_collection, False, 1, sw:simple_vector:[1-8])
a bw_excel_interface.sort()
*** top level ***()
a sw:magik_rep.process(sw:simple_vector:[1-5])
a sw:magik_rep.cli(a sw:terminal, "MagikSF> ")
cli()
light_thread_launcher_proc_990928()


If I use any other value, it ignores it and the method runs. However, Excel
defaults to xlNo (i.e. a sort without a header row).

Has anyone used this successfully? My versions are CST 4.1 and Excel 2000.

Cheers,
Chris

#20147 From: "kitti_kadam" <kitti_kadam@...>
Date: Wed Nov 11, 2009 5:30 pm
Subject: Refresh SIAS client side image
kitti_kadam
Offline Offline
Send Email Send Email
 
When we call map method of map service from client side,
an image is generated and stored in default folder. How can i refresh  Client
side image with this newly generated image??

#20146 From: "vic.valdon_2006" <vic.valdon_2006@...>
Date: Tue Nov 10, 2009 9:30 pm
Subject: Help on Accelerators Using Capslock
vic.valdon_2006
Offline Offline
Send Email Send Email
 
Hi All,

Anybody have an idea how to incorporate upper case key in the accelerators? I
tried to add Shift + <key> in the message file but only works on actual
Shift+key when pressed not when capslock is On.

Is there any character qualifier to read uppercase and lower case differently in
message file?

btw i'm using 4.1 version.


Thanks in advance!

Vic

#20145 From: "rodrigo.aguerre" <rodrigo.aguerre@...>
Date: Tue Nov 10, 2009 5:41 pm
Subject: Re: SIAS 4.1.2 Query
rodrigo.aguerre
Offline Offline
Send Email Send Email
 
Thanks Fred.


--- In sw-gis@yahoogroups.com, "fdspicer" <fred.d.spicer@...> wrote:
>
> From the SIAS 4.12 (TSB 18) documentation:
>
> A Query service request onto a large database may take a significant time and
impact the response time of the application server to other requests. Various
configuration options are available to an Administrator to try to avoid one
request taking too long. These options apply to both the Locator and Query
services.
> In Magik, a database collection responds to the method size_is_fast? to report
whether its total size can be determined quickly. This affects the behaviour of
the services in the way described below.
>
> The following properties are available in the SIAS Core properties file:
>
> sias.QueryBean.maxResultSize — the maximum number of records to retrieve from
the database. By default, this limit is imposed only if the size of the result
set can be determined quickly (that is, size_is_fast? is true).
> sias.QueryBean.enforceMaxSize — if true, the maximum result size is enforced
for all result sets, even if determining the size of the result set may be slow
(that is, size_is_fast? is false).
> sias.QueryBean.maxSortSize — the maximum size of a result set which can be
sorted.
> For unsorted results on a database collection:
>
> with size_is_fast? true, the actual table totals are generally available to a
client application.
> with size_is_fast? false, the table totals are available only if
enforceMaxSize is true. If the actual table totals are not available, the table
is omitted from table_totals.
> For sorted results, the initial database collection is generally accessed as
an internal, sorted result set with size_is_fast? true. As a result, the total
size of a result set may be displayed for a sorted result even though it is not
displayed for an unsorted result. A separate limit is imposed on the number of
records which can be sorted.
>
> I believe this is what you're looking for.
>
> Fred
>
>
>
> --- In sw-gis@yahoogroups.com, "rodrigo.aguerre" <rodrigo.aguerre@> wrote:
> >
> > Hi. I thought that the problem was solved, but it isn't. It seems that the
result size of the query is displayed only when no constraints are used on the
query. Any ideas of how to force the display of the result size instead of the
word "many"?
> >
> > --- In sw-gis@yahoogroups.com, "rodrigo.aguerre" <rodrigo.aguerre@> wrote:
> > >
> > > Hi. I changed the value for sias.QueryBean.maxResultSize in the
sias-core.properties file. The word "many" instead of the result count, was
displayed when the result count was bigger than that value.
> > > Thanks.
> > >
> > > --- In sw-gis@yahoogroups.com, Edro Wolter <always_surfing@> wrote:
> > > >
> > > >
> > > > Hi Rodrigo,
> > > >
> > > >
> > > >
> > > > Try to use the published_settings.sias_client.max_exportable_records in
the sias-role-XXX.properties. Generally is set with 500 value.
> > > >
> > > >
> > > >
> > > > I don't tried it before.
> > > >
> > > >
> > > >
> > > > Cheers,
> > > >
> > > > Edro.
> > > >
> > > >
> > > >
> > > > To: sw-gis@yahoogroups.com
> > > > From: rodrigo.aguerre@
> > > > Date: Tue, 3 Nov 2009 15:50:02 +0000
> > > > Subject: [sw-gis] SIAS 4.1.2 Query
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Hello. Sometimes when I make a query, it shows "Query: 1 to 25 of many",
and sometimes it shows the total of the elements found: "Query: 1 to 25 of 450".
How can I configure to always display the number of elements found?. In all
cases, the button which allows you to go to the last page of results ">|" is
always disabled, why is that?
> > > > Thanks.
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > _________________________________________________________________
> > > > Novo windowslive.com.br. Descubra como juntar a galera com os produtos
Windows Live.
> > > >
http://www.windowslive.com.br/?ocid=WindowsLive09_MSN_Hotmail_Tagline_out09
> > > >
> > >
> >
>

#20144 From: "Stefan Alpers" <stefan.alpers@...>
Date: Tue Nov 10, 2009 8:56 am
Subject: Re: UI control colours
stefanalpers
Offline Offline
Send Email Send Email
 
Hi Glenn,

I'm not sure anymore if and how it works but you can try the methods on
win32_message_mixin to send Windows message methods.

Bye,

Stefan

----- original Nachricht --------

Betreff: [sw-gis] UI control colours
Gesendet: Di, 10. Nov 2009
Von: gnicholls_ubisense

   Hi,

What if I don't want grey dialogs?
What if I don't want my text boxes to be black text on white background?

I'm sure there is a way to set colours on user-interface controls but if I ever
knew it I have forgotten. I have spent some time looking for likely properties
on the ui elements but to no avail.

Can someone point me in the right direction?

Thanks
Glenn




--- original Nachricht Ende ----

#20143 From: "Stefan Alpers" <stefan.alpers@...>
Date: Tue Nov 10, 2009 8:57 am
Subject: Re: UI control colours
stefanalpers
Offline Offline
Send Email Send Email
 
Hi Glenn,

I'm not sure anymore if and how it works but you can try the methods on
win32_message_mixin to send Windows message methods.

Bye,

Stefan

----- original Nachricht --------

Betreff: [sw-gis] UI control colours
Gesendet: Di, 10. Nov 2009
Von: gnicholls_ubisense

   Hi,

What if I don't want grey dialogs?
What if I don't want my text boxes to be black text on white background?

I'm sure there is a way to set colours on user-interface controls but if I ever
knew it I have forgotten. I have spent some time looking for likely properties
on the ui elements but to no avail.

Can someone point me in the right direction?

Thanks
Glenn




--- original Nachricht Ende ----

#20142 From: "gnicholls_ubisense" <glennnicholls@...>
Date: Tue Nov 10, 2009 12:23 am
Subject: UI control colours
gnicholls_ub...
Offline Offline
Send Email Send Email
 
Hi,

What if I don't want grey dialogs?
What if I don't want my text boxes to be black text on white background?

I'm sure there is a way to set colours on user-interface controls but if I ever
knew it I have forgotten.  I have spent some time looking for likely properties
on the ui elements but to no avail.

Can someone point me in the right direction?

Thanks
Glenn

#20141 From: "Harris, Ronnie" <rharris@...>
Date: Mon Nov 9, 2009 3:38 pm
Subject: RE: Need help for Object validaion through magik code
rharris@...
Send Email Send Email
 

Sorry about the previously garbled version – this is what it should have looked like.

 

 

 

MagikSF> gpm

$

a sw:gis_program_manager

MagikSF> dbve[:structure_node].select(predicate_spatial.new(:location,:within, {dbve[:oh_feeder_segment].an_element().route.buffer(2.feet_to_mm)}))

$

select_collection(on structure_node)

MagikSF> !.size

$

4

MagikSF>

 

Ronnie

 

-----Original Message-----
From: sw-gis@yahoogroups.com [mailto:sw-gis@yahoogroups.com] On Behalf Of Harris, Ronnie
Sent: Monday, November 09, 2009 7:30 AM
To: sw-gis@yahoogroups.com
Subject: RE: [sw-gis] Need help for Object validaion through magik code

 

Hi Muthukrishna,

 

In SW 3.3 I've been using code as below for the types of queries you are attempting to perform:

 

Global Variable values:

 

Gpm  << gis_program_manager

Ve   << gpm.databases[:electric]

Dbve << ve.collections

 

MagikSF> dbve[:structure_node].select(predicate_spatial.new(:location,:within, {dbve[:oh_feeder_segment].an_element().route.buffer(2.feet_to_mm)}))

$

select_collection(on structure_node)

MagikSF> !.size

$

4

MagikSF>

 

Give it a go,

 

Ronnie

 

-----Original Message-----

From: sw-gis@yahoogroups.com [mailto:sw-gis@yahoogroups.com] On Behalf Of vr_muthukrishna

Sent: Monday, November 09, 2009 1:14 AM

To: sw-gis@yahoogroups.com

Subject: [sw-gis] Need help for Object validaion through magik code

 

Hi all,

        I have created two objects in smallworld case, say[utility lines and utility points]. I need to find out whether one object is overlapping with the other or not. I tried some methods in Magik like [all_connected_geometry()]. The geometry field of those objects are simple_chain and simple_point. So it doesn't bound with any topologies.

Could any of you suggest any methods in magik for this.

 

Thanks in advance.

 

 

Muthukrishna.R

 

 

 

------------------------------------

 

Yahoo! Groups Links

 

 

 

 

 

------------------------------------

 

Yahoo! Groups Links

 

<*> To visit your group on the web, go to:

    http://groups.yahoo.com/group/sw-gis/

 

<*> Your email settings:

    Individual Email | Traditional

 

<*> To change settings online go to:

    http://groups.yahoo.com/group/sw-gis/join

    (Yahoo! ID required)

 

<*> To change settings via email:

    sw-gis-digest@yahoogroups.com

    sw-gis-fullfeatured@yahoogroups.com

 

<*> To unsubscribe from this group, send an email to:

    sw-gis-unsubscribe@yahoogroups.com

 

<*> Your use of Yahoo! Groups is subject to:

    http://docs.yahoo.com/info/terms/

 


Messages 20141 - 20190 of 20283   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help