[GeoNetwork-users] GeoNetwork 4.0 add category to filters

Hello,

I am working with GeoNetwork 4.0.0.

I have created some custom categories and assigned my metadata records to those categories. Now, I would like to add the category as a filter in the Search page to be able to filter my records by category. I believe it has to be configured in the user interface (https://localhost/geonetwork/srv/eng/admin.console#/settings/ui) Search application > Filters.

But I don´t know the code to use to add the category. Which is the field name I have to use? And the facet name? What am I doing wrong?
{
  "topicCat": {
    "terms": {
      "field": "tocpicCat"
    }
  }
}

Thanks in advance for your help.

Best regards,

Nagore González Echepare
Analista / Desarrolladora GIS
nagore.gonzalez@anonymised.com
Tfno.: (+34) 656 63 59 02 / 945 13 13 72
C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

[https://www.geograma.com/pie-de-mail/geogramatalks.png\]<https://bit.ly/geogramatalks&gt;
Si no ves la imagen puedes acceder al boletín de Geograma desde aquí.<https://bit.ly/geogramatalks&gt;

Tratamos su dirección de correo electrónico y otros datos personales para mantener el contacto y comunicación con Ud. y, en su caso, remitirle información sobre nuestros productos y servicios. Si no desea recibir tal información envíe un e-mail en tal sentido a dpd@anonymised.com Puede acceder, rectificar y suprimir los datos, así como otros derechos, como se detalla en la información adicional y completa a su disposición en nuestra política de privacidad en la URL bit.ly/geo-privacidad. Este mensaje y los archivos adjuntos al mismo son privados y confidenciales, si no es Ud. el destinatario y ha recibido este mensaje por error, rogamos nos lo comunique inmediatamente sin difundir, almacenar o copiar su contenido.

[https://www.geograma.com/pie-de-mail/geo-linkedin.png\]<https://bit.ly/geo-linkedin&gt; [https://www.geograma.com/pie-de-mail/geo-twitter.png\] <https://bit.ly/geo-tw&gt;

Hi, you should probably update first to 4.0.3.

In user interface configuration, Filters is used to restrict all searches
to some records eg. none harvested records, not obsolete records, ... That
means that they will not be visible in search results.

In your case it looks like you want to add a facet on the category field.
So you should look to
https://geonetwork-opensource.org/manuals/4.0.x/en/customizing-application/configuring-faceted-search.html.
To explore what are the fields available you can also check a document in
your index using
http://localhost:9200/gn-records/_doc/fd2ba1d6-71e5-468d-b052-ad31ad121286.
category field is "cat", ISO topic category will be cl_topic.key or
cl_topic.default if your catalog is multilingual or not.

HTH

Francois

Le mar. 2 mars 2021 à 12:27, Nagore Gonzalez Etxepare <
Nagore.Gonzalez@anonymised.com> a écrit :

Hello,

I am working with GeoNetwork 4.0.0.

I have created some custom categories and assigned my metadata records to
those categories. Now, I would like to add the category as a filter in the
Search page to be able to filter my records by category. I believe it has
to be configured in the user interface (
https://localhost/geonetwork/srv/eng/admin.console#/settings/ui) Search
application > Filters.

But I don´t know the code to use to add the category. Which is the field
name I have to use? And the facet name? What am I doing wrong?
{
  "topicCat": {
    "terms": {
      "field": "tocpicCat"
    }
  }
}

Thanks in advance for your help.

Best regards,

Nagore González Echepare
Analista / Desarrolladora GIS
nagore.gonzalez@anonymised.com
Tfno.: (+34) 656 63 59 02 / 945 13 13 72
C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

[https://www.geograma.com/pie-de-mail/geogramatalks.png\]<
https://bit.ly/geogramatalks&gt;
Si no ves la imagen puedes acceder al boletín de Geograma desde aquí.<
https://bit.ly/geogramatalks&gt;

Tratamos su dirección de correo electrónico y otros datos personales para
mantener el contacto y comunicación con Ud. y, en su caso, remitirle
información sobre nuestros productos y servicios. Si no desea recibir tal
información envíe un e-mail en tal sentido a dpd@anonymised.com Puede
acceder, rectificar y suprimir los datos, así como otros derechos, como se
detalla en la información adicional y completa a su disposición en nuestra
política de privacidad en la URL bit.ly/geo-privacidad. Este mensaje y
los archivos adjuntos al mismo son privados y confidenciales, si no es Ud.
el destinatario y ha recibido este mensaje por error, rogamos nos lo
comunique inmediatamente sin difundir, almacenar o copiar su contenido.

[https://www.geograma.com/pie-de-mail/geo-linkedin.png\]<
https://bit.ly/geo-linkedin&gt; [
https://www.geograma.com/pie-de-mail/geo-twitter.png\] <
https://bit.ly/geo-tw&gt;

_______________________________________________
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 Francois,

I am coming back with this issue. Recently, we have updated to version 4.0.4 and we managed to add the categories in the main page. The problem is that it is showing the id and not the description of the category in the UI language (we have descriptions of the categories in different languages). Is it possible to show the description instead of the id? We are adding the facet in the following way:

"cat.keyword": {
    "terms": {
      "field": "cat.keyword",
      "size": 22
    }
  },

We have tried also with cat.key and cat.default without result.

[cid:image001.png@...1909...]

Thanks,

Nagore González Echepare
Analista / Consultora GIS
nagore.gonzalez@...1602...<mailto:nagore.gonzalez@…1602…>
Tfno.: +34 945 13 13 72
C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

De: Francois Prunayre <fx.prunayre@...54...>
Enviado el: martes, 2 de marzo de 2021 13:37
Para: Nagore Gonzalez Etxepare <Nagore.Gonzalez@...1602...>
CC: geonetwork-users@lists.sourceforge.net
Asunto: Re: [GeoNetwork-users] GeoNetwork 4.0 add category to filters

Hi, you should probably update first to 4.0.3.

In user interface configuration, Filters is used to restrict all searches to some records eg. none harvested records, not obsolete records, ... That means that they will not be visible in search results.

In your case it looks like you want to add a facet on the category field. So you should look to https://geonetwork-opensource.org/manuals/4.0.x/en/customizing-application/configuring-faceted-search.html. To explore what are the fields available you can also check a document in your index using http://localhost:9200/gn-records/_doc/fd2ba1d6-71e5-468d-b052-ad31ad121286. category field is "cat", ISO topic category will be cl_topic.key or cl_topic.default if your catalog is multilingual or not.

HTH

Francois

Le mar. 2 mars 2021 à 12:27, Nagore Gonzalez Etxepare <Nagore.Gonzalez@...1602...<mailto:Nagore.Gonzalez@…1602…>> a écrit :
Hello,

I am working with GeoNetwork 4.0.0.

I have created some custom categories and assigned my metadata records to those categories. Now, I would like to add the category as a filter in the Search page to be able to filter my records by category. I believe it has to be configured in the user interface (https://localhost/geonetwork/srv/eng/admin.console#/settings/ui) Search application > Filters.

But I don´t know the code to use to add the category. Which is the field name I have to use? And the facet name? What am I doing wrong?
{
  "topicCat": {
    "terms": {
      "field": "tocpicCat"
    }
  }
}

Thanks in advance for your help.

Best regards,

Nagore González Echepare
Analista / Desarrolladora GIS
nagore.gonzalez@...1602...<mailto:nagore.gonzalez@…1602…>
Tfno.: (+34) 656 63 59 02 / 945 13 13 72
C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

[https://www.geograma.com/pie-de-mail/geogramatalks.png\]<https://bit.ly/geogramatalks&gt;
Si no ves la imagen puedes acceder al boletín de Geograma desde aquí.<https://bit.ly/geogramatalks&gt;

Tratamos su dirección de correo electrónico y otros datos personales para mantener el contacto y comunicación con Ud. y, en su caso, remitirle información sobre nuestros productos y servicios. Si no desea recibir tal información envíe un e-mail en tal sentido a dpd@...1602...<mailto:dpd@…1602…>. Puede acceder, rectificar y suprimir los datos, así como otros derechos, como se detalla en la información adicional y completa a su disposición en nuestra política de privacidad en la URL bit.ly/geo-privacidad<http://bit.ly/geo-privacidad&gt;\. Este mensaje y los archivos adjuntos al mismo son privados y confidenciales, si no es Ud. el destinatario y ha recibido este mensaje por error, rogamos nos lo comunique inmediatamente sin difundir, almacenar o copiar su contenido.

[https://www.geograma.com/pie-de-mail/geo-linkedin.png\]<https://bit.ly/geo-linkedin&gt; [https://www.geograma.com/pie-de-mail/geo-twitter.png\] <https://bit.ly/geo-tw&gt;

_______________________________________________
GeoNetwork-users mailing list
GeoNetwork-users@lists.sourceforge.net<mailto:GeoNetwork-users@lists.sourceforge.net>
https://lists.sourceforge.net/lists/listinfo/geonetwork-users
GeoNetwork OpenSource is maintained at http://sourceforge.net/projects/geonetwork

(attachments)

image001.png

Hi, for now you've 2 options:
* Update JS locale files and clean translation cache
https://github.com/geonetwork/core-geonetwork/blob/main/web-ui/src/main/resources/catalog/locales/en-core.json
* Or use the translation API which allows to store custom translations in
the database (better on the long term as you don't need to change the
source code)
https://github.com/geonetwork/core-geonetwork/pull/4823

Francois

Le mar. 11 mai 2021 à 10:25, Nagore González Etxepare <
Nagore.Gonzalez@anonymised.com> a écrit :

Hi Francois,

I am coming back with this issue. Recently, we have updated to version
4.0.4 and we managed to add the categories in the main page. The problem is
that it is showing the id and not the description of the category in the UI
language (we have descriptions of the categories in different languages).
Is it possible to show the description instead of the id? We are adding the
facet in the following way:

"cat.keyword": {

    "terms": {

      "field": "cat.keyword",

      "size": 22

    }

  },

We have tried also with cat.key and cat.default without result.

Thanks,

*Nagore González Echepare*

*Analista / Consultora GIS*

nagore.gonzalez@anonymised.com

Tfno.: +34 945 13 13 72

C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

*De:* Francois Prunayre <fx.prunayre@anonymised.com>
*Enviado el:* martes, 2 de marzo de 2021 13:37
*Para:* Nagore Gonzalez Etxepare <Nagore.Gonzalez@anonymised.com>
*CC:* geonetwork-users@lists.sourceforge.net
*Asunto:* Re: [GeoNetwork-users] GeoNetwork 4.0 add category to filters

Hi, you should probably update first to 4.0.3.

In user interface configuration, Filters is used to restrict all searches
to some records eg. none harvested records, not obsolete records, ... That
means that they will not be visible in search results.

In your case it looks like you want to add a facet on the category field.
So you should look to
https://geonetwork-opensource.org/manuals/4.0.x/en/customizing-application/configuring-faceted-search.html.
To explore what are the fields available you can also check a document in
your index using
http://localhost:9200/gn-records/_doc/fd2ba1d6-71e5-468d-b052-ad31ad121286.
category field is "cat", ISO topic category will be cl_topic.key or
cl_topic.default if your catalog is multilingual or not.

HTH

Francois

Le mar. 2 mars 2021 à 12:27, Nagore Gonzalez Etxepare <
Nagore.Gonzalez@anonymised.com> a écrit :

Hello,

I am working with GeoNetwork 4.0.0.

I have created some custom categories and assigned my metadata records to
those categories. Now, I would like to add the category as a filter in the
Search page to be able to filter my records by category. I believe it has
to be configured in the user interface (
https://localhost/geonetwork/srv/eng/admin.console#/settings/ui) Search
application > Filters.

But I don´t know the code to use to add the category. Which is the field
name I have to use? And the facet name? What am I doing wrong?
{
  "topicCat": {
    "terms": {
      "field": "tocpicCat"
    }
  }
}

Thanks in advance for your help.

Best regards,

Nagore González Echepare
Analista / Desarrolladora GIS
nagore.gonzalez@anonymised.com
Tfno.: (+34) 656 63 59 02 / 945 13 13 72
C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

[https://www.geograma.com/pie-de-mail/geogramatalks.png\]<
https://bit.ly/geogramatalks&gt;
Si no ves la imagen puedes acceder al boletín de Geograma desde aquí.<
https://bit.ly/geogramatalks&gt;

Tratamos su dirección de correo electrónico y otros datos personales para
mantener el contacto y comunicación con Ud. y, en su caso, remitirle
información sobre nuestros productos y servicios. Si no desea recibir tal
información envíe un e-mail en tal sentido a dpd@anonymised.com Puede
acceder, rectificar y suprimir los datos, así como otros derechos, como se
detalla en la información adicional y completa a su disposición en nuestra
política de privacidad en la URL bit.ly/geo-privacidad. Este mensaje y
los archivos adjuntos al mismo son privados y confidenciales, si no es Ud.
el destinatario y ha recibido este mensaje por error, rogamos nos lo
comunique inmediatamente sin difundir, almacenar o copiar su contenido.

[https://www.geograma.com/pie-de-mail/geo-linkedin.png\]<
https://bit.ly/geo-linkedin&gt; [
https://www.geograma.com/pie-de-mail/geo-twitter.png\] <
https://bit.ly/geo-tw&gt;

_______________________________________________
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

(attachments)

image001.png

That did the trick!

Thanks Francois!

Nagore González Echepare
Analista / Consultora GIS
nagore.gonzalez@...1602...<mailto:nagore.gonzalez@…1602…>
Tfno.: +34 945 13 13 72
C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

De: Francois Prunayre <fx.prunayre@...54...>
Enviado el: martes, 11 de mayo de 2021 10:30
Para: Nagore González Etxepare <Nagore.Gonzalez@...1602...>
CC: geonetwork-users@lists.sourceforge.net
Asunto: Re: [GeoNetwork-users] GeoNetwork 4.0 add category to filters

Hi, for now you've 2 options:
* Update JS locale files and clean translation cache
https://github.com/geonetwork/core-geonetwork/blob/main/web-ui/src/main/resources/catalog/locales/en-core.json
* Or use the translation API which allows to store custom translations in the database (better on the long term as you don't need to change the source code)
https://github.com/geonetwork/core-geonetwork/pull/4823

Francois

Le mar. 11 mai 2021 à 10:25, Nagore González Etxepare <Nagore.Gonzalez@...1602...<mailto:Nagore.Gonzalez@…1602…>> a écrit :
Hi Francois,

I am coming back with this issue. Recently, we have updated to version 4.0.4 and we managed to add the categories in the main page. The problem is that it is showing the id and not the description of the category in the UI language (we have descriptions of the categories in different languages). Is it possible to show the description instead of the id? We are adding the facet in the following way:

"cat.keyword": {
    "terms": {
      "field": "cat.keyword",
      "size": 22
    }
  },

We have tried also with cat.key and cat.default without result.

[cid:image001.png@...1913...]

Thanks,

Nagore González Echepare
Analista / Consultora GIS
nagore.gonzalez@...1602...<mailto:nagore.gonzalez@…1602…>
Tfno.: +34 945 13 13 72
C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

De: Francois Prunayre <fx.prunayre@...54...<mailto:fx.prunayre@…54…>>
Enviado el: martes, 2 de marzo de 2021 13:37
Para: Nagore Gonzalez Etxepare <Nagore.Gonzalez@...1602...<mailto:Nagore.Gonzalez@…1602…>>
CC: geonetwork-users@lists.sourceforge.net<mailto:geonetwork-users@lists.sourceforge.net>
Asunto: Re: [GeoNetwork-users] GeoNetwork 4.0 add category to filters

Hi, you should probably update first to 4.0.3.

In user interface configuration, Filters is used to restrict all searches to some records eg. none harvested records, not obsolete records, ... That means that they will not be visible in search results.

In your case it looks like you want to add a facet on the category field. So you should look to https://geonetwork-opensource.org/manuals/4.0.x/en/customizing-application/configuring-faceted-search.html. To explore what are the fields available you can also check a document in your index using http://localhost:9200/gn-records/_doc/fd2ba1d6-71e5-468d-b052-ad31ad121286. category field is "cat", ISO topic category will be cl_topic.key or cl_topic.default if your catalog is multilingual or not.

HTH

Francois

Le mar. 2 mars 2021 à 12:27, Nagore Gonzalez Etxepare <Nagore.Gonzalez@...1602...<mailto:Nagore.Gonzalez@…1602…>> a écrit :
Hello,

I am working with GeoNetwork 4.0.0.

I have created some custom categories and assigned my metadata records to those categories. Now, I would like to add the category as a filter in the Search page to be able to filter my records by category. I believe it has to be configured in the user interface (https://localhost/geonetwork/srv/eng/admin.console#/settings/ui) Search application > Filters.

But I don´t know the code to use to add the category. Which is the field name I have to use? And the facet name? What am I doing wrong?
{
  "topicCat": {
    "terms": {
      "field": "tocpicCat"
    }
  }
}

Thanks in advance for your help.

Best regards,

Nagore González Echepare
Analista / Desarrolladora GIS
nagore.gonzalez@...1602...<mailto:nagore.gonzalez@…1602…>
Tfno.: (+34) 656 63 59 02 / 945 13 13 72
C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

[https://www.geograma.com/pie-de-mail/geogramatalks.png\]<https://bit.ly/geogramatalks&gt;
Si no ves la imagen puedes acceder al boletín de Geograma desde aquí.<https://bit.ly/geogramatalks&gt;

Tratamos su dirección de correo electrónico y otros datos personales para mantener el contacto y comunicación con Ud. y, en su caso, remitirle información sobre nuestros productos y servicios. Si no desea recibir tal información envíe un e-mail en tal sentido a dpd@...1602...<mailto:dpd@…1602…>. Puede acceder, rectificar y suprimir los datos, así como otros derechos, como se detalla en la información adicional y completa a su disposición en nuestra política de privacidad en la URL bit.ly/geo-privacidad<http://bit.ly/geo-privacidad&gt;\. Este mensaje y los archivos adjuntos al mismo son privados y confidenciales, si no es Ud. el destinatario y ha recibido este mensaje por error, rogamos nos lo comunique inmediatamente sin difundir, almacenar o copiar su contenido.

[https://www.geograma.com/pie-de-mail/geo-linkedin.png\]<https://bit.ly/geo-linkedin&gt; [https://www.geograma.com/pie-de-mail/geo-twitter.png\] <https://bit.ly/geo-tw&gt;

_______________________________________________
GeoNetwork-users mailing list
GeoNetwork-users@lists.sourceforge.net<mailto:GeoNetwork-users@lists.sourceforge.net>
https://lists.sourceforge.net/lists/listinfo/geonetwork-users
GeoNetwork OpenSource is maintained at http://sourceforge.net/projects/geonetwork

(attachments)

image001.png

Good. We are also looking for support to implement the admin UI for the
translation API so users can easily add custom translations. Don't hesitate
to contribute.

Francois

Le mar. 11 mai 2021 à 11:12, Nagore González Etxepare <
Nagore.Gonzalez@anonymised.com> a écrit :

That did the trick!

Thanks Francois!

*Nagore González Echepare*

*Analista / Consultora GIS*

nagore.gonzalez@anonymised.com

Tfno.: +34 945 13 13 72

C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

*De:* Francois Prunayre <fx.prunayre@anonymised.com>
*Enviado el:* martes, 11 de mayo de 2021 10:30
*Para:* Nagore González Etxepare <Nagore.Gonzalez@anonymised.com>
*CC:* geonetwork-users@lists.sourceforge.net
*Asunto:* Re: [GeoNetwork-users] GeoNetwork 4.0 add category to filters

Hi, for now you've 2 options:

* Update JS locale files and clean translation cache

https://github.com/geonetwork/core-geonetwork/blob/main/web-ui/src/main/resources/catalog/locales/en-core.json

* Or use the translation API which allows to store custom translations in
the database (better on the long term as you don't need to change the
source code)

https://github.com/geonetwork/core-geonetwork/pull/4823

Francois

Le mar. 11 mai 2021 à 10:25, Nagore González Etxepare <
Nagore.Gonzalez@anonymised.com> a écrit :

Hi Francois,

I am coming back with this issue. Recently, we have updated to version
4.0.4 and we managed to add the categories in the main page. The problem is
that it is showing the id and not the description of the category in the UI
language (we have descriptions of the categories in different languages).
Is it possible to show the description instead of the id? We are adding the
facet in the following way:

"cat.keyword": {

    "terms": {

      "field": "cat.keyword",

      "size": 22

    }

  },

We have tried also with cat.key and cat.default without result.

Thanks,

*Nagore González Echepare*

*Analista / Consultora GIS*

nagore.gonzalez@anonymised.com

Tfno.: +34 945 13 13 72

C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

*De:* Francois Prunayre <fx.prunayre@anonymised.com>
*Enviado el:* martes, 2 de marzo de 2021 13:37
*Para:* Nagore Gonzalez Etxepare <Nagore.Gonzalez@anonymised.com>
*CC:* geonetwork-users@lists.sourceforge.net
*Asunto:* Re: [GeoNetwork-users] GeoNetwork 4.0 add category to filters

Hi, you should probably update first to 4.0.3.

In user interface configuration, Filters is used to restrict all searches
to some records eg. none harvested records, not obsolete records, ... That
means that they will not be visible in search results.

In your case it looks like you want to add a facet on the category field.
So you should look to
https://geonetwork-opensource.org/manuals/4.0.x/en/customizing-application/configuring-faceted-search.html.
To explore what are the fields available you can also check a document in
your index using
http://localhost:9200/gn-records/_doc/fd2ba1d6-71e5-468d-b052-ad31ad121286.
category field is "cat", ISO topic category will be cl_topic.key or
cl_topic.default if your catalog is multilingual or not.

HTH

Francois

Le mar. 2 mars 2021 à 12:27, Nagore Gonzalez Etxepare <
Nagore.Gonzalez@anonymised.com> a écrit :

Hello,

I am working with GeoNetwork 4.0.0.

I have created some custom categories and assigned my metadata records to
those categories. Now, I would like to add the category as a filter in the
Search page to be able to filter my records by category. I believe it has
to be configured in the user interface (
https://localhost/geonetwork/srv/eng/admin.console#/settings/ui) Search
application > Filters.

But I don´t know the code to use to add the category. Which is the field
name I have to use? And the facet name? What am I doing wrong?
{
  "topicCat": {
    "terms": {
      "field": "tocpicCat"
    }
  }
}

Thanks in advance for your help.

Best regards,

Nagore González Echepare
Analista / Desarrolladora GIS
nagore.gonzalez@anonymised.com
Tfno.: (+34) 656 63 59 02 / 945 13 13 72
C/ Pintor Clemente Arráiz, 3 BJ (01008) Vitoria-Gasteiz, Álava

[https://www.geograma.com/pie-de-mail/geogramatalks.png\]<
https://bit.ly/geogramatalks&gt;
Si no ves la imagen puedes acceder al boletín de Geograma desde aquí.<
https://bit.ly/geogramatalks&gt;

Tratamos su dirección de correo electrónico y otros datos personales para
mantener el contacto y comunicación con Ud. y, en su caso, remitirle
información sobre nuestros productos y servicios. Si no desea recibir tal
información envíe un e-mail en tal sentido a dpd@anonymised.com Puede
acceder, rectificar y suprimir los datos, así como otros derechos, como se
detalla en la información adicional y completa a su disposición en nuestra
política de privacidad en la URL bit.ly/geo-privacidad. Este mensaje y
los archivos adjuntos al mismo son privados y confidenciales, si no es Ud.
el destinatario y ha recibido este mensaje por error, rogamos nos lo
comunique inmediatamente sin difundir, almacenar o copiar su contenido.

[https://www.geograma.com/pie-de-mail/geo-linkedin.png\]<
https://bit.ly/geo-linkedin&gt; [
https://www.geograma.com/pie-de-mail/geo-twitter.png\] <
https://bit.ly/geo-tw&gt;

_______________________________________________
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

(attachments)

image001.png