Strumenti
08/01/2019
Strumenti RNDT
- Servizio di ricerca - CSW
- API REST
- Endpoint GeoDCAT-AP
- Visualizzatore
- Sistema di registri INSPIRE Italia
- Statistiche
Strumenti esterni
- Plugin RNDT per GeoNetwork (Città Metropolitana di Firenze)
- EDI Metadata Editor con profilo RNDT (IREA - CNR)
- Excel - Metadata, foglio di calcolo RNDT (progetto GeoSmartCity)
Read more
Specifiche in consultazione
18/04/2018
In questa pagina sono riportati i documenti resi disponibili per la consultazione pubblica.
Linee Guida RNDT
Titolo - Linee Guida recanti regole tecniche per la definizione e l’aggiornamento del contenuto del Repertorio Nazionale dei Dati Territoriali
Autore - Sezione Tecnica 2 Metadati - Consulta Nazionale per l'Informazione Territoriale ed Ambientale
Data di pubblicazione - 06/04/2021
Scadenza consultazione - 09/05/2021
Stato - Versione finale per consultazione
Documenti:
- Linee Guida in consultazione
- Linee Guida in consultazione in formato navigabile
- Template (formato .docx)
- Template (formato .odt)
Come partecipare alla consultazione
Tutti gli interessati potranno inviare proprie opportune osservazioni e proposte di modifica entro il 9 maggio 2021 attraverso una delle seguenti modalità:
- aprire una 'issue' nel repository Github dedicato;
- inviare una mail all'indirizzo This email address is being protected from spambots. You need JavaScript enabled to view it. utilizzando il template pubblicato innanzi e mutuato da ISO.
Access to data via REST API
06/04/2018
RNDT allows to query the resources through REST API. To query the RNDT catalog, use the following url pattern:
https://geodati.gov.it/RNDT/rest/find/document? <parametro>&<parametro>&…
where <parametro> is a placeholder for a REST parameter.
The table below lists the main parameters available.
Parametro | Descrizione | Valori accettati |
bbox | Query by extent specified as two pairs of coordinates (west-south and east-north). | Comma-delimited string of latitude and longitude. |
spatialRel | Query by spatial relationship. Used in conjunction with bbox parameter. | String value. One of esriSpatialRelWithin (default), esriSpatialRelOverlaps. |
searchText | Query by keyword. | String value representing a keyword. you can use searchText=sys.schema.key to query for documents that correspond to a specific metadata schema. Schemas available in RNDT: rndt-dataset, rndt-nuoveacq, rndt-raster, rndt-series, rndt-services. (Be aware that the character - in the Lucene syntax is a prohibit operator. So, in the request use the character ? instead of the character -). |
dataCategory | Query by data category (ISO 19115 topic category). | Comma-delimited list of strings. Keywords identified by the ISO 19115 specification. |
after, before | Query by date. | Date string in the format yyyy-mm-dd. |
orderBy | Result sort options. | String value. One of: areaAscending, areaDescending, dateAscending, dateDescending (default), format, relevance, title. |
start | Specify which item to start the response with out of the entire resultset. | Integer. When used with the max parameter, this provides for pagination of the search results. |
max | Specify max number of records to retrieve. | Integer. The limit on qualified queries is max=5000. Default: 10. When used with the start parameter, this provides for pagination of the search results. |
f | The response format. | String value. One of: georss (default), atom, json, pjson, xjson (compliant with geojson 1.0), dcat, kml, html, htmlfragment, CSV. |
maxSearchTimeMilliSec | Maximum amount of time allowed to retrieve results. | Integer. Default is 5000 milliseconds. |
filter | Can apply a persistent filter to the search interface. | Lucene-based query syntax. |
Further details are available at REST API Syntax page on the geoportal-server GitHub repository.
The search engine is based on the open source search engine Apache Lucene. To make the most of the search page, how to use Lucene search syntax for text searches could be useful.
Fielded data to be used in the RNDT search are listed here. It includes the INSPIRE search criteria (queryables) identified in the technical guidance for the discovery service.
Some examples are given below.
EXAMPLE 1
Search of data containing the INSPIRE theme "Idrografia" (searchText=INSPIRETheme:Idrografia). INSPIRETheme is one of the fielded data. The search is limited to the first 300 results (start=1 and max=300) ordered by title (orderBy=title) and the response is given in pjson format (f=pjson).
Instead of searchText parameter, filter parameter can be used retrieving the same result. The request will be:
EXAMPLE 2
Search of data containing the words "carta" and "geologica" in the title, max 50 results (max=50) starting from the 20° record (start=20) ordered by title (orderBy=title) with a response format as HTML (f=html).
We can have more cases.
If the words are surrounded by double quotes (searchText=title:"carta geologica"), then the response will return all the items containing the words carta and geologica directly after each other.
If the words are included without quotes (searchText=title:carta geologica), then the response will return all the items containing the word "carta" in the title and the word "geologica" in any text field, since text is the default field and the field indicator is not required.
If the words are included using the AND operator (searchText=title:carta AND geologica), then the response will return all the items containing both words.
EXAMPLE 3
Example using character wildcards and required/prohibit operators. Search of the first 50 metadata (start=1 e max=50) containing the word "suolo" and not containing the word "natura" (-natura). Results ordered by title (orderBy=title) and response format as json (f=json).
Search as above, but with metadata containing the string "suo" (*suo*) and not containing words beginning with "na" then two characters and the final "ra" (na??ra)
EXAMPLE 4
Search of a specific item with a known metadata file identifier (fileIdentifier) returning the metadata XML file.
https://geodati.gov.it/RNDT/rest/document?id=ispra_rm:0029CNATHB_DT
The RNDT APIs specifications according to OpenAPI standard are available here: https://developers.italia.it/it/api/geodati
Read moreAccesso ai dati tramite API REST
05/04/2018
La ricerca dei dati nel RNDT è possibile anche tramite API REST. Per interrogare il Catalogo, l’URL da utilizzare è il seguente:
https://geodati.gov.it/RNDT/rest/find/document? <parametro>&<parametro>&…
dove <parametro> è uno dei parametri REST disponibili. Di seguito sono elencati quelli principali.
Parametro | Descrizione | Valori accettati |
bbox | Estensione indicata come due coppie di coordinate (ovest-sud e est-nord). | Valori di latitudine e longitudine separati da virgole. |
spatialRel | Relazione spaziale, da utilizzare in associazione con il parametro bbox. | Valore stringa a scelta tra: esriSpatialRelWithin (default), esriSpatialRelOverlaps. |
searchText | Testo. | Stringa. È possibile utilizzare anche searchText=sys.schema.key per ricercare i metadati che corrispondono ad uno schema specifico. Gli schemi possibili nel RNDT sono i seguenti: rndt-dataset, rndt-nuoveacq, rndt-raster, rndt-series, rndt-services. (ATTENZIONE: il segno - nella sintassi Lucene è un operatore di esclusione. Per cui nelle richieste sostituire il segno - con il segno ?). |
dataCategory | Categoria tematica del dataset, definita nello Standard ISO 19115 (enumerazione TopicCategoryCode). | Valori separati da virgola. |
after, before | Date per identificare un intervallo temporale. | Date nel formato yyyy-mm-dd |
orderBy | Ordinamento risultati. | Uno fra: areaAscending, areaDescending, dateAscending, dateDescending (default), format, relevance, title. |
start | Numero del primo record da considerare. | Intero. Se utilizzato insieme al parametro max, fornisce l'impaginazione dei risultati della ricerca. |
max | Numero massimo di risultati. | Interno. Valore massimo: 5000, default: 10. Se utilizzato insieme al parametro start, fornisce l'impaginazione dei risultati della ricerca. |
f | Formato della risposta. | Un valore fra: georss (default), atom, json, pjson, xjson (compatibile con geojson 1.0), dcat, kml, html, htmlfragment, CSV. |
maxSearchTimeMilliSec | Tempo massimo per la risposta. | Intero. Il valore di default è 5000 millisecondi. |
filter | Può essere applicato un filtro all'interfaccia di ricerca. | Sintassi della query basata su Lucene. |
Per maggiori dettagli fare riferimento alla pagina REST API Syntax del repository GitHub geoportal-server.
Il motore di ricerca è basato su Apache Lucene. Per sfruttare al meglio la ricerca, può essere utile conoscere la sintassi delle query Lucene per le ricerche di testo.
Gli elementi interrogabili da utilizzare nelle ricerche nel RNDT sono elencati qui. Essi includono i criteri di ricerca indicati nelle linee guida INSPIRE sui servizi di ricerca.
Nelle pagine della guida online relativa alla ricerca dettagliata sono disponibili ulteriori dettagli anche relativamente all'utilizzo di operatori booleani, operatori jolly e operatori di inclusione/esclusione.
Di seguito si riportano alcuni esempi esplicativi.
ESEMPIO 1
Ricerca di tutti i dati che hanno come tema INSPIRE Idrografia (searchText=INSPIRETheme:Idrografia). INSPIRETheme è uno dei criteri di ricerca. La ricerca è limitata ai primi 300 record (start=1 e max=300) e i risultati visualizzati in formato pjson (f=pjson) con ordinamento basato sul titolo.
Al posto del parametro searchText si può utilizzare il parametro filter ottenendo lo stesso risultato. La richiesta diventa:
ESEMPIO 2
Ricerca di tutti i dati che contengono le parole "carta" e "geologica" nel titolo, con massimo 50 risultati (max=50) a cominciare dal 20° record (start=20) visualizzati in HTML (f=html) ordinati secondo il titolo stesso (orderBy=title).
Si possono avere più casi.
Se il testo viene inserito tra virgolette (searchText=title:"carta geologica"), la ricerca restituisce tutti i record che contengono esattamente il testo inserito (le due parole una dopo l'altra così come inserite).
Se le due parole sono inserite senza virgolette (searchText=title:carta geologica), la ricerca restituisce tutti i record che contengono "carta" nel titolo e "geologica" in qualsiasi campo, in quanto, quando non specificato, il criterio di default è text.
Se le due parole sono inserite con l'operatore AND (searchText=title:carta AND geologica), la ricerca restituisce tutti i record che contengono entrambe le parole (non necessariamente una dopo l'altra così come inserite).
ESEMPIO 3
Esempio con l'utilizzo di operatori jolly e operatori di inclusione/esclusione. Ricerca dei primi 50 metadati (start=1 e max=50) che contengono la parola "suolo" e non contengono la parola "natura" (-natura). Risultati ordinati secondo il titolo (orderBy=title) e risposta in formato json (f=json).
Ricerca come sopra, ma con metadati contenenti la stringa "suo" (*suo*) e non contenenti parole che iniziano con la sillaba "na" seguita da due caratteri e che finiscono con la sillaba "ra" (na??ra)
ESEMPIO 4
Ricerca di uno specifico record tramite l'ID del file di metadati (fileIdentifier) che ritorna l'XML del metadato.
https://geodati.gov.it/RNDT/rest/document?id=ispra_rm:0029CNATHB_DT
Le specifiche delle API di RNDT secondo lo standard OpenAPI sono disponibili qui: https://developers.italia.it/it/api/geodati
Read moreOngoing activities
05/04/2018
AgID is actively involved in the main activities listed below.
PELL PROJECT
The PELL Project (Public Energy Living Lab), under the responsibility of ENEA, is part of the Three-Year Plan of the "Electrical System Research" 2015/17 and in particular in the D6 Project "Development of an integrated model of urban Smart district" related to the Research subject "Smart Cities and Smart Communities". From the operational point of view, PELL is a geographic information system aiming to provide services for the efficiency of national public lighting.
AgID contributes to the project with the support to the definition of the technical specifications of the PELL and public lighting data model and to the implementation of the platform.
SINFI PROJECT
SINFI (National Federated Information System of Physical Infrastructures), established by the Decree of the Minister of Economic Development 11 May 2016, represents the cadastre of physical infrastructures available on the national territory. It is the reference tool for the new ultra-broadband strategy, managed by Infratel Italia on behalf of the Ministry of Economic Development.
AgID contributes to the project with the support for the definition and maintenance of technical specifications (approved by the SINFI Coordination and Monitoring Committee, of which an AgID representative is part) and the implementation of the platform, the collection and validation of data compliant with the aforementioned specific.
INSPIRE REGISTRY
AgID was nominated as submitting organization for the INSPIRE registers and register federation. The tasks of the submitting organisations mainly shall be to collect, consolidate and submit proposals for changes to the content of the central INSPIRE registers and proposals for inclusion of additional registers in the INSPIRE register federation to the register manager.
In that context, AgID is also in charge of the INSPIRE Italia Registry that provides a central access point to a number of nationally managed registers.
INSPIRE MIG
AgID participates with its own experts in the activities of the working groups set up within the INSPIRE MIG (Maintenance and Implementation Group).
The sub-group 2017.4 Validation and testing testing is currently working in relation to the implementation of a common reference validator for metadata, data and services available within the INSPIRE infrastructure.
CNITA
The National Committee for the Spatial and Environmental Information, established with the art. 11 of the Legislative Decree no. 32/2010, is the coordination structure across all the public administrations responsible for collecting spatial data sets, as well as the structure supporting the Ministry of the environment and the protection of the territory and the sea in the scope of the provision of measures for the operation of the national infrastructure for spatial information and environmental monitoring. The operating procedures of the Committee have been defined with the Decree of the President of the Council of Ministers 12 January 2016.
AgID participates in the Committee with its own representative and in the work of the technical sections (established within the Committee) with its own experts.
ELISE
ELISE (European Location Interoperability Solutions for e-Government) is an action supported under the ISA2 programme aiming to break down barriers and promote a coherent and consistent approach to the sharing and reuse of location data across borders and sectors, supporting Better Regulation goals in terms of EU policy and the Digital Single Market strategy in the context of digital transformation of public services.
AgID participates with its own representative in the Working Group on geospatial solution.
UN-GGIM
AgID participates in the National Committee of the UN-GGIM (Global Geospatial Information Management). UN-GGIM aims to address global challenges regarding the use of geospatial information, including in the development agendas, and to serve as a body for global policymaking in the field of geospatial information management.
UNINFO
AgID leads the Working Group on the definition of the professional profiles related to geographic information, in the more general context of the unregulated professional figures operating in the ICT sector. The draft specification defined in the WG is now awaiting publication by UNI.
Read moreSpatial data
05/04/2018
Spatial data is the knowledge base element for all the policies related to the management of the territory. The knowledge of the real world is crucial both as a tool for the development and as a support for the decisions in fields such as security policies, civil protection, spatial planning, transport, environment.
The great wealth of location information in Italy is characterized by a marked fragmentation and by evident quality and consistency issues that significantly impact on the several administrative procedures based on this data.
In order to overcome those issues, the Infrastructure for Spatial Information (INSPIRE) was established in Europe in 2007; it is also being implemented in Italy.
Moreover, in order to make the role of the public administration in this sector more incisive and to optimize the significant wealth of spatial data, Article 59 of the Digital Administration Code, in addition to the establishment of the RNDT, also regulates the adoption of the technical rules for collecting, documentation, exchange and reuse of spatial data held by public administrations.
In this context, AgID supports the Administrations and contributes to the process of defining the aforementioned technical rules, especially for the purposes of interoperability and the development of projects related to the implementation of the Digital Agenda.
With the setting up of the National Committee for Spatial and Environmental Information (CNITA), as per art. 11 of Legislative Decree 32/2010 (decree transposing the INSPIRE Directive), that process may be carried out within the technical sections identified within the scope of that Committee.
To date, the technical rules adopted with specific legal acts have been defined by the Committee for the technical rules on the spatial data of the public administrations envisaged by the aforementioned art. 59 in the version prior to the changes occurred in 2016 and 2017. Those rules are as follows:
- the decree of the Director of the Cadastral Agency of November 13, 2007 defining the technical-economic rules for the use of cadastral data;
- the 4 decrees of the Presidency of the Council of Ministers of 10 November 2011 (published in the Official Journal No. 48 of 27 February 2012 - Ordinary Supplement No. 37) defining:
- the adoption of the national geodetic system;
- the definition of the technical specifications of the geotopographic databases (later updated by a specific Working Group coordinated by CISIS);
- the definition of the technical rules of the RNDT;
- the collecting, documentation and exchange of digital orthoimagery at a nominal scale of 1: 10,000.
In addition, the specifications on the utility netwoks and the SINFI (the national information system of the physical infrastructures) was defined by a specific Working Group after the end of the mandate of the aforementioned Committee.
In the "Technical Rules" section of this web site all the specifications adopted are available.
AgID also takes an active role in various activities related to spatial data both in Italy and in Europe.
Read moreDocuments archive
22/03/2018
Here you can find the legal and technical reference documentation concerning RNDT, as well as the presentations and the publications related to spatial data and RNDT.
Accreditation | National rules | European rules | Presentations and publications
National legal and technical documentation
European legal and technical documentation
Presentations and publications
* Legenda - P = presentazione; A = articolo/paper; I = foglio informativo; D = documento
Useful links
22/03/2018
INSTITUTIONAL WEB SITES
NATIONAL PUBLIC MAPPING ORGANIZATIONS
- IGM - Istituto Geografico Militare
- Agenzia delle Entrate (ex Agenzia del Territorio)
- ISPRA - Servizio Geologico
- CIGA - Centro Informazioni Geotopografiche Aeronautiche
- Istituto Idrografico della Marina Militare
GEO-BLOGs FOR RNDT
- AboutHydrology
- CadGis
- Cesare Gerbino GIS Blog
- freeGIS-italia
- GEOforUS
- Geofunction
- GEOmedia
- GIS e Infrastrutture
- Il muschio sugli alberi
- ilSarrett
- JGrass Tech Tips
- Kartoblog
- Map Freely
- massimozotti.it
- PaoloGIS
- Planetek
- TANTO
- Un blog di "Alternativa Geologica"
GEOPORTALS FOR RNDT
RNTD Alert - People say about us
22/03/2018
Here you can find the links to news articles concerning the RNDT published on blogs, magazines and web sites.
15/01/2018 - Linee guida per l'allineamento e l'integrazione dei metadati RNDT e dati.gov - GEOforALL
04/07/2017 - Il repertorio on line dei dati territoriali - Cronache E-Government
09/09/2016 - Da AgID una checklist per gli open data - ForumPA
11/03/2016 - Spatial Data Infrastructure nazionale: si può fare? - Tech Economy
15/12/2015 - On line gli atti/Repertorio Nazionale dei Dati Territoriali (RNDT): obbligo per le amministrazioni e opportunità per il territorio - ForumPA
05/10/2015 - Il Repertorio dei dati territoriali disponibili ai fini dell'implementazione di un SIT per la Città di Tricase - SlideShare
17/09/2015 - GeoNetwork/Tutorial Creazione Metadati RNDT - YouTube
09/06/2015 - Open Data: Nasce il Sistema Informativo Territoriale (SIT) Federato del Guilcier - Sardinia Innovation
02/06/2015 - Geonue, così un sistema per gestire gli open data dei piccoli Comuni può creare lavoro - EconomyUp.it
26/05/2015 - I Comuni del Guilcier si digitalizzano con il SIT - BitMAP
22/04/2015 - Sedilo (OR) al 1° posto per la condivisione dei dati territoriali - SardegnaRicerche
10/04/2015 - RNDT, Sedilo (OR) primo Comune nel catalogo nazionale dei dati territoriali - saperi.forumpa.it
12/03/2015 - Il Geoportale ARPA Piemonte entra nella rete del Repertorio Nazionale dei Dati Territoriali - GEOforALL
10/03/2015 - Il patrimonio dei dati geografici dell'Emilia Romagna condiviso sul portale RNDT - geoportale ER
11/02/2015 - Dal cuore della Sardegna: Sedilo il primo comune Italiano ad alimentare il catalogo RDNT - TTecnologico
09/02/2015 - Le PA nella rete del Repertorio Nazionale dei Dati Territoriali - GeoNue
09/02/2015 - Sinergis a supporto della Regione Emilia-Romagna nel Repertorio Nazionale Dati Territoriali - Dedagroup.it
17/11/2014 - Due “Italie” o Italia a metà? Ne vorremmo una nel registro INSPIRE - TANTO blog
18/09/2014 - La newsletter del Repertorio Nazionale dei Dati Territoriali - GEOforALL
09/09/2014 - Decreto PA: va online l'elenco delle base dati - Postel blog
08/09/2014 - Il JRC chiede commenti su alcuni documenti INSPIRE pubblicati - GEOforALL
01/09/2014 - Per decreto la PA deve comunicare all'AgID le basi di dati utilizzate - GEOforALL
04/07/2014 - Camera dei Deputati - Interrogazione a risposta scritta 4-05391
26/06/2014 - Finalità e ambiti specifici dei dati territoriali online - InfoOggi.it
01/04/2014 - Il RNDT interrogabile anche da QGIS - GEOforALL
05/03/2014 - Opendata da immagini satellitari: 5 regole d'oro - massimozotti.it
04/02/2014 - Le novità dal RNDT - GEOforALL
30/01/2014 - Test INSPIRE: RNDT passa l'esame! - Cesare Gerbino GIS Blog
10/01/2014 - Nuovo report del RNDT - GEOforALL
17/09/2013 - RecenSiti - rndt.gov.it - KEY4biz
20/06/2013 - Nuovi dataset e servizi nel Repertorio Nazionale dei Dati territoriali - Open Source Academy
10/06/2013 - Anche la Regione Valle d'Aosta pubblica i metadati tramite il CSW del RNDT - rivista GEOmedia.it
20/05/2013 - Nuovi dataset e servizi nel Repertorio Nazionale dei Dati Territoriali - GEOforUS
15/04/2013 - Il Repertorio si alimenta automaticamente - GEOforUS
07/03/2013 - RNDT pubblica il catalogo CSW - rivista GEOmedia.it
05/03/2013 - Pubblicati i servizi CSW del RNDT - GEOforUS
05/03/2013 - Pubblicati i servizi CSW del RNDT - INSPIRE Forum
05/02/2013 - Guida all'inserimento dei dati raster nel RNDT - GEOforUS
10/12/2012 - Pubblicazione Dati nel Portale del RNDT - nodo SITR Provincia di Trapani
21/11/2012 - Pubblicato il dataset "Musei" nel Portale RNDT - nodo SITR Provincia di Trapani
20/11/2012 - Viva il Repertorio Nazionale dei Dati Territoriali - GEOforUS
19/11/2012 - Perchè il Repertorio Nazionale dei Dati Territoriali arrivi ... - TANTO
19/11/2012 - Verso un Repertorio Regionale dei Dati Cartografici in Puglia? Intanto c'è l'RNDT ... - Alternativa Geologica
19/11/2012 - Dati territoriali italiani: dove sono e come li posso usare? Ce lo dice RNDT - massimozotti.it
30/10/2012 - Il RNDT: ruolo, stato di attuazione e adempimenti delle amministrazioni - rivista GEOmedia.it
09/10/2012 - Nuovo report del RNDT - GEOforUS
05/10/2012 - Novità da RNDT - rivista GEOmedia.it
04/10/2012 - Twitter-report sulla Conferenza AMFM 2012 - rivista GEOmedia.it
11/09/2012 - Il RNDT nel Catalogo del riuso - GEOforUS
05/09/2012 - Pubblicati i metadati relativi a 9 servizi della Provincia di Trapani - nodo SITR Provincia di Trapani
31/07/2012 - Aggiornamento della Guida Operativa del RNDT - GEOforUS
24/07/2012 - Le statistiche del Repertorio Nazionale dei Dati Territoriali - GEOforUS
17/07/2012 - On line il portale del Repertorio nazionale dei dati territoriali - saperi.forumpa.it
17/07/2012 - Nuove politiche integrate attraverso un’interoperabilità dei dati territoriali - youtopic
06/06/2012 - Bandi, considerazioni e RNDT... - Kartoblog
01/05/2012 - Attivato il portale Repertorio nazionale dei dati territoriali - ateneoweb
27/04/2012 - Repertorio Nazionale dei Dati Territoriali - ARPAT Toscana
23/04/2012 - Repertorio Nazionale dei Dati Territoriali - Riteco
23/04/2012 - Portale del Repertorio Nazionale dei Dati Territoriali - nodo SITR Provincia di Trapani
18/04/2012 - Il portale del repertorio nazionale dei dati territoriali e' online - blog essenzadeltempo
13/04/2012 - Il portale del repertorio nazionale dei dati territoriali e' online - geometra.info
13/04/2012 - PA Digitale, on line il portale del Repertorio nazionale dei dati territoriali - regionedigitale
12/04/2012 - Open Data: Online il portale del Repertorio nazionale dei dati territoriali - key4biz
11/04/2012 - DigitPA: attivato il Repertorio Nazionale dei Dati Territoriali - Comuniverso
11/04/2012 - Repertorio nazionale dei Dati Territoriali: ora basta un click - innovapuglia
10/04/2012 - Il sito web del RNDT un nuovo tassello per l'informazione geografica - rivista GEOmedia.it
10/04/2012 - E' nato il portale del Repertorio Nazionale dei Dati Territoriali (RNDT) - GEOforUS
09/04/2012 - Repertorio Nazionale dei Dati territoriali: il portale è online! - blog cesaregerbino
06/04/2012 - Online il portale del Repertorio nazionale dei dati territoriali - scoop
Read moreNewsletter
22/03/2018
Here you can find "RNDT news", the newsletter of the RNDT.
The newsletter is updated without a predetermined frequency; for this reason it can not be considered an editorial product according to the law n. 62/2001.
To receive notification of publication of new numbers, send a request using our contact details in the footer.
The data will be processed in compliance with the provisions on personal data protection legislation (Legislative Decree 196/2003).
Latest newsletters
Newsletter n. 1/2023 - Inverno 2022/23 new!
Newsletter n. 2/2022 - Autunno 2022
Newsletter n. 1/2022 - Primavera 2022
Newsletter n. 4/2021 - Inverno 2021
Newsletter n. 3/2021 - Autunno 2021
Newsletter n. 2/2021 - Estate 2021
Newsletter n. 1/2021 - Primavera 2021
Oldest newsletters
Newsletter n. 2/2020 - 21 dicembre 2020
Newsletter n. 1/2020 - 22 giugno 2020
Newsletter n. 3/2019 - 20 dicembre 2019
Newsletter n. 2/2019 - 26 luglio 2019
Newsletter n. 1/2019 - 29 marzo 2019
Newsletter n. 3/2018 - 21 dicembre 2018
Newsletter n. 2/2018 - 12 settembre 2018
Newsletter n. 1/2018 - 26 aprile 2018
Newsletter n. 3/2017 - 17 novembre 2017
Newsletter n. 2/2017 - 18 luglio 2017
Newsletter n. 1/2017 - 4 maggio 2017
Newsletter n. 1/2016 - speciale eventi - 07 aprile 2016 >> download
Newsletter n. 3/2015 - 23 novembre 2015 >> download
Newsletter n. 2/2015 - 29 luglio 2015 >> download
Newsletter n. 1/2015 - 11 marzo 2015 >> download
Newsletter n. 2/2014 - 13 novembre 2014 >> download
Newsletter n. 1/2014 - 10 settembre 2014 >> download