[GeoNetwork-users] multiple spatial locations

Hi

I have a report which has 4 unique areas of study in it, I want to capture this in geonetwork 2.4.2 (we can do custom builds), but I don't know how to or if it's possible.

I don't really want duplicate reports and I don't want one mega bounding box, as the report focussed on N-E Queensland and then in several locations in WA, and the mega bounding box makes it much less useful for identification.

Terry Rankine.

Hi Terry,

Theoretically you should be able to have multiple bounding boxes in your extent by creating multiple 'geographicElements'. (See XML below for example of multiple bounding boxes.)

Unfortunately, I can't tell you if GN implements this, how the indexes manage it and how it presents it.

Thanks.

John

         <gmd:extent>
            <gmd:EX_Extent>
               <gmd:geographicElement>
                  <gmd:EX_GeographicBoundingBox>
                     <gmd:westBoundLongitude>
                        <gco:Decimal>92</gco:Decimal>
                     </gmd:westBoundLongitude>
                     <gmd:eastBoundLongitude>
                        <gco:Decimal>172</gco:Decimal>
                     </gmd:eastBoundLongitude>
                     <gmd:southBoundLatitude>
                        <gco:Decimal>-60</gco:Decimal>
                     </gmd:southBoundLatitude>
                     <gmd:northBoundLatitude>
                        <gco:Decimal>-8</gco:Decimal>
                     </gmd:northBoundLatitude>
                  </gmd:EX_GeographicBoundingBox>
               </gmd:geographicElement>
               <!-- Test mulit bounding boxes -->
               <gmd:geographicElement>
                  <gmd:EX_GeographicBoundingBox>
                     <gmd:westBoundLongitude>
                        <gco:Decimal>87.8</gco:Decimal>
                     </gmd:westBoundLongitude>
                     <gmd:eastBoundLongitude>
                        <gco:Decimal>179.9</gco:Decimal>
                     </gmd:eastBoundLongitude>
                     <gmd:southBoundLatitude>
                        <gco:Decimal>-65</gco:Decimal>
                     </gmd:southBoundLatitude>
                     <gmd:northBoundLatitude>
                        <gco:Decimal>-50</gco:Decimal>
                     </gmd:northBoundLatitude>
                  </gmd:EX_GeographicBoundingBox>

               </gmd:geographicElement>
...
            </gmd:EX_Extent>
         </gmd:extent>

-----Original Message-----
From: Terry.Rankine@anonymised.com [mailto:Terry.Rankine@anonymised.com]
Sent: Tuesday, 23 March 2010 4:29 PM
To: geonetwork-users@lists.sourceforge.net
Subject: [GeoNetwork-users] multiple spatial locations

Hi

I have a report which has 4 unique areas of study in it, I
want to capture this in geonetwork 2.4.2 (we can do custom
builds), but I don't know how to or if it's possible.

I don't really want duplicate reports and I don't want one
mega bounding box, as the report focussed on N-E Queensland
and then in several locations in WA, and the mega bounding
box makes it much less useful for identification.

Terry Rankine.
--------------------------------------------------------------
----------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
GeoNetwork-users mailing list
GeoNetwork-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geonetwork-users
GeoNetwork OpenSource is maintained at
http://sourceforge.net/projects/geonetwork

Hi Terry,

Adding to what John has said its possible to identify each box using the 'id' attribute.
Handy, so you know which box is which. We have done this as we are describing
some nautical paper charts which have multiple sub-charts on them. See snippet below:

<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox id="Australia_North_Coast_-_Queensland_-_Approaches_to_Weipa_0">
<gmd:westBoundLongitude>
<gco:Decimal>141.45112558</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>141.9022105</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>-12.86724397</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>-12.41513333</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox id="Port_of_Weipa_1">
<gmd:westBoundLongitude>
<gco:Decimal>141.80195892</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>141.89275</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>-12.69885342</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>-12.65096681</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>

Andrew

----- Original Message ----- From: <John.Hockaday@anonymised.com>
To: <Terry.Rankine@anonymised.com>; <geonetwork-users@lists.sourceforge.net>
Sent: Tuesday, March 23, 2010 4:49 PM
Subject: Re: [GeoNetwork-users] multiple spatial locations [SEC=UNCLASSIFIED]

Hi Terry,

Theoretically you should be able to have multiple bounding boxes in your extent by creating multiple 'geographicElements'. (See XML below for example of multiple bounding boxes.)

Unfortunately, I can't tell you if GN implements this, how the indexes manage it and how it presents it.

Thanks.

John

        <gmd:extent>
           <gmd:EX_Extent>
              <gmd:geographicElement>
                 <gmd:EX_GeographicBoundingBox>
                    <gmd:westBoundLongitude>
                       <gco:Decimal>92</gco:Decimal>
                    </gmd:westBoundLongitude>
                    <gmd:eastBoundLongitude>
                       <gco:Decimal>172</gco:Decimal>
                    </gmd:eastBoundLongitude>
                    <gmd:southBoundLatitude>
                       <gco:Decimal>-60</gco:Decimal>
                    </gmd:southBoundLatitude>
                    <gmd:northBoundLatitude>
                       <gco:Decimal>-8</gco:Decimal>
                    </gmd:northBoundLatitude>
                 </gmd:EX_GeographicBoundingBox>
              </gmd:geographicElement>
              <!-- Test mulit bounding boxes -->
              <gmd:geographicElement>
                 <gmd:EX_GeographicBoundingBox>
                    <gmd:westBoundLongitude>
                       <gco:Decimal>87.8</gco:Decimal>
                    </gmd:westBoundLongitude>
                    <gmd:eastBoundLongitude>
                       <gco:Decimal>179.9</gco:Decimal>
                    </gmd:eastBoundLongitude>
                    <gmd:southBoundLatitude>
                       <gco:Decimal>-65</gco:Decimal>
                    </gmd:southBoundLatitude>
                    <gmd:northBoundLatitude>
                       <gco:Decimal>-50</gco:Decimal>
                    </gmd:northBoundLatitude>
                 </gmd:EX_GeographicBoundingBox>

              </gmd:geographicElement>
...
           </gmd:EX_Extent>
        </gmd:extent>

-----Original Message-----
From: Terry.Rankine@anonymised.com [mailto:Terry.Rankine@anonymised.com]
Sent: Tuesday, 23 March 2010 4:29 PM
To: geonetwork-users@lists.sourceforge.net
Subject: [GeoNetwork-users] multiple spatial locations

Hi

I have a report which has 4 unique areas of study in it, I
want to capture this in geonetwork 2.4.2 (we can do custom
builds), but I don't know how to or if it's possible.

I don't really want duplicate reports and I don't want one
mega bounding box, as the report focussed on N-E Queensland
and then in several locations in WA, and the mega bounding
box makes it much less useful for identification.

Terry Rankine.
--------------------------------------------------------------
----------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
GeoNetwork-users mailing list
GeoNetwork-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geonetwork-users
GeoNetwork OpenSource is maintained at
http://sourceforge.net/projects/geonetwork

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
GeoNetwork-users mailing list
GeoNetwork-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geonetwork-users
GeoNetwork OpenSource is maintained at http://sourceforge.net/projects/geonetwork