GeoNorgeAPI 4.0.0-alpha3

This is a prerelease version of GeoNorgeAPI.
dotnet add package GeoNorgeAPI --version 4.0.0-alpha3
                    
NuGet\Install-Package GeoNorgeAPI -Version 4.0.0-alpha3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GeoNorgeAPI" Version="4.0.0-alpha3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GeoNorgeAPI" Version="4.0.0-alpha3" />
                    
Directory.Packages.props
<PackageReference Include="GeoNorgeAPI" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GeoNorgeAPI --version 4.0.0-alpha3
                    
#r "nuget: GeoNorgeAPI, 4.0.0-alpha3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package GeoNorgeAPI@4.0.0-alpha3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=GeoNorgeAPI&version=4.0.0-alpha3&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=GeoNorgeAPI&version=4.0.0-alpha3&prerelease
                    
Install as a Cake Tool

GeoNorgeAPI

C# API for communicating with GeoNorge.no through the CSW Service

Getting Started

To install GeoNorgeAPI, run the following command in the Package Manager Console:

PM> Install-Package GeoNorgeAPI

Example code

using www.opengis.net;
using GeoNorgeAPI;

public class MyClass {
    public void MyMethod() {
        GeoNorge api = new GeoNorge();
        SearchResultsType result = api.Search("flomsone");
        Console.WriteLine(result.numberOfRecordsMatched + " metadata found");
    }
}

Security

From version: 2.1.1 (07.04.2014)

The API is using SSL to communicate with www.geonorge.no. Use your credentials like this to perform Insert/update/delete operations:

GeoNorgeAPI.GeoNorge api = new GeoNorgeAPI.GeoNorge("myusername", "mypassword");

MD_Metadata_Type metadata = new MD_Metadata_Type();
// ... add information to the metadata object
var transaction = _geonorge.MetadataInsert(metadata);
Console.WriteLine(transaction.TotalInserted + " metadata inserted.");

Credentials can be acquired from your Geodatakoordinator at Kartverket.

SimpleMetadata

The MD_Metadata_Type is quite large and complex since it is based on the ISO 19139 standard. This project contains a wrapper SimpleMetadata that does all the heavy lifting and manipulating of the MD_Metadata_Type object for you!

Example of use of SimpleMetadata

using GeoNorgeAPI;

GeoNorge api = new GeoNorge("myusername", "mypassword");

SimpleMetadata simpleMetadata = SimpleMetadata.CreateDataset();
simpleMetadata.Title = "This is my dataset!";
simpleMetadata.Abstract = "This is the abstract telling you everything you need to know about this dataset.";
simpleMetadata.ContactPublisher = new SimpleContact
{ 
    Name = "John Smith", Email = "nothing@example.com", Organization = "My organization", Role = "publisher" 
};

SimpleMetadata now contains a MD_Metadata_Type that looks like this when serialized to XML:

<?xml version="1.0" encoding="utf-8"?>
<gmd:MD_Metadata xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:csw="http://www.opengis.net/cat/csw/2.0.2" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:srv="http://www.isotc211.org/2005/srv" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:gmd="http://www.isotc211.org/2005/gmd">
  <gmd:hierarchyLevel>
    <gmd:MD_ScopeCode codeList="http://www.isotc211.org/2005/resources/Codelist/ML_gmxCodelists.xml#MD_ScopeCode" codeListValue="dataset" />
  </gmd:hierarchyLevel>
  <gmd:identificationInfo>
    <gmd:MD_DataIdentification>
      <gmd:citation>
        <gmd:CI_Citation>
          <gmd:title>
            <gco:CharacterString>This is my dataset!</gco:CharacterString>
          </gmd:title>
        </gmd:CI_Citation>
      </gmd:citation>
      <gmd:abstract>
        <gco:CharacterString>This is the abstract telling you everything you need to know about this dataset.</gco:CharacterString>
      </gmd:abstract>
      <gmd:pointOfContact>
        <gmd:CI_ResponsibleParty>
          <gmd:individualName>
            <gco:CharacterString>John Smith</gco:CharacterString>
          </gmd:individualName>
          <gmd:organisationName>
            <gco:CharacterString>My organization</gco:CharacterString>
          </gmd:organisationName>
          <gmd:contactInfo>
            <gmd:CI_Contact>
              <gmd:address>
                <gmd:CI_Address>
                  <gmd:electronicMailAddress>
                    <gco:CharacterString>nothing@example.com</gco:CharacterString>
                  </gmd:electronicMailAddress>
                </gmd:CI_Address>
              </gmd:address>
            </gmd:CI_Contact>
          </gmd:contactInfo>
          <gmd:role>
            <gmd:CI_RoleCode codeList="http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/Codelist/ML_gmxCodelists.xml#CI_RoleCode" codeListValue="publisher" />
          </gmd:role>
        </gmd:CI_ResponsibleParty>
      </gmd:pointOfContact>
    </gmd:MD_DataIdentification>
  </gmd:identificationInfo>
</gmd:MD_Metadata>

The MD_Metadata_Type can be inserted into GeoNorge by using the API like this:

var transaction = _geonorge.MetadataInsert(simpleMetadata.GetMetadata());

The SimpleMetadata wrapper has methods for all fields that is required to be compliant with INSPIRE.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.0-alpha3 140 9/10/2025
4.0.0-alpha2 138 9/8/2025
4.0.0-alpha1 331 6/11/2025
3.8.4 145 9/10/2025
3.8.3 236 7/16/2025
3.8.2 164 7/8/2025
3.8.1 320 4/15/2025
3.8.0 319 4/14/2025
3.7.9 232 3/14/2025
3.7.8 254 2/26/2025
3.7.7 265 2/12/2025
3.7.6 301 2/11/2025
3.7.5 269 2/10/2025
3.7.4 489 2/4/2025
3.7.3 155 2/4/2025
3.7.2 164 2/4/2025
3.7.1 175 2/3/2025
3.7.0 161 2/3/2025
3.6.9 352 1/9/2025
3.6.8 443 12/2/2024
3.6.7 169 11/27/2024
3.6.6 150 11/26/2024
3.6.5 145 11/25/2024
3.6.4 197 11/15/2024
3.6.3 231 10/22/2024
3.6.2 134 10/22/2024
3.6.1 249 10/16/2024
3.6.0 197 10/10/2024
3.5.9 154 10/9/2024
3.5.8 207 10/8/2024
3.5.7 593 5/29/2024
3.5.6 1,843 9/21/2023
3.5.5 141 9/21/2023
3.5.4 328 9/5/2023
3.5.3 345 5/24/2023
3.5.2 1,594 8/16/2022
3.5.1 548 8/12/2022
3.5.0 806 5/23/2022
3.4.9 655 5/4/2022
3.4.8 603 5/2/2022
3.4.7 596 5/2/2022
3.4.6 621 4/29/2022
3.4.5 632 3/31/2022
3.4.4 611 3/31/2022
3.4.3 640 3/23/2022
3.4.2 637 3/7/2022
3.4.1 487 1/12/2022
3.4.0 480 1/12/2022
3.3.9 561 10/27/2021
3.3.8 499 10/20/2021
3.3.7 556 9/10/2021
3.3.6 523 9/10/2021
3.3.5 550 9/10/2021
3.3.4 539 9/6/2021
3.3.3 535 8/31/2021
3.3.1 589 4/21/2021
3.3.0 710 1/4/2021
3.2.9 706 12/1/2020
3.2.8 724 11/19/2020
3.2.7 694 9/28/2020
3.2.6 685 8/28/2020
3.2.5 730 6/19/2020
3.2.4 703 5/29/2020
3.2.3 680 5/26/2020
3.2.2 732 4/28/2020
3.2.1 705 4/28/2020
3.2.0 721 4/28/2020
3.1.9 706 4/24/2020
3.1.8 708 4/24/2020
3.1.7 717 4/24/2020
3.1.6 806 1/30/2020
3.1.5 675 1/30/2020
3.1.4 769 1/24/2020
3.1.3 788 10/11/2019
3.1.2 777 10/11/2019
3.1.1 1,273 8/6/2019
3.1.0 1,408 2/19/2019
3.0.72 1,505 10/31/2018
3.0.71 1,544 10/19/2018
3.0.70 1,753 8/7/2018
3.0.69 1,740 8/7/2018
3.0.68 1,756 8/7/2018
3.0.67 1,727 8/7/2018
3.0.66 1,709 8/6/2018
3.0.65 1,761 7/5/2018
3.0.64 1,957 7/4/2018
3.0.63 1,991 6/25/2018
3.0.62 1,966 6/21/2018
3.0.61 1,950 6/20/2018
3.0.60 1,921 6/15/2018
3.0.59 1,925 6/14/2018
3.0.58 1,957 6/13/2018
3.0.57 1,935 6/13/2018
3.0.56 1,751 6/12/2018
3.0.55 1,976 5/25/2018
3.0.54 2,049 5/16/2018
3.0.53 2,069 5/14/2018
3.0.52 1,998 5/11/2018
3.0.51 1,963 5/9/2018
3.0.50 2,002 5/8/2018
3.0.49 1,960 5/8/2018
3.0.48 1,986 5/7/2018
3.0.47 2,008 4/25/2018
3.0.46 1,982 4/25/2018
3.0.45 2,017 4/12/2018
3.0.44 1,981 4/9/2018
3.0.43 2,026 4/6/2018
3.0.42 2,009 1/25/2018
3.0.41 1,827 11/1/2017
3.0.40 1,782 10/13/2017
3.0.39 1,793 10/13/2017
3.0.38 1,891 5/3/2017
3.0.37 1,886 4/6/2017
3.0.36 1,887 4/4/2017
3.0.35 1,852 3/23/2017
3.0.34 1,865 3/23/2017
3.0.33 1,856 3/14/2017
3.0.32 1,870 3/14/2017
3.0.31 1,877 3/6/2017
3.0.30 1,908 1/30/2017
3.0.29 1,903 1/19/2017
3.0.28 1,954 10/24/2016
3.0.27 1,836 10/24/2016
3.0.26 1,874 10/24/2016
3.0.25 1,883 10/21/2016
3.0.24 1,947 10/19/2016
3.0.23 1,854 10/4/2016
3.0.22 1,850 10/4/2016
3.0.21 1,892 9/30/2016
3.0.20 1,975 9/14/2016
3.0.19 1,896 9/8/2016
3.0.18 1,896 9/8/2016
3.0.17 1,879 9/6/2016
3.0.16 1,893 9/6/2016
3.0.15 1,880 9/6/2016
3.0.14 1,917 9/5/2016
3.0.13 1,876 9/2/2016
3.0.12 1,863 8/30/2016
3.0.11 1,891 8/29/2016
3.0.10 1,897 8/19/2016
3.0.9 2,031 8/1/2016
3.0.8 1,972 5/10/2016
3.0.7 2,013 12/8/2015
3.0.6 1,994 11/13/2015
3.0.5 2,071 9/28/2015
3.0.4 2,007 9/18/2015
3.0.3 1,956 9/18/2015
3.0.2 2,023 9/16/2015
3.0.1 2,074 8/31/2015
3.0.0 2,333 4/27/2015
2.9.0 2,116 4/18/2015
2.8.0 2,071 4/16/2015
2.7.9 2,060 4/15/2015
2.7.8 2,076 4/15/2015
2.7.7 2,013 3/20/2015
2.7.6 1,947 3/20/2015
2.7.5 1,995 3/10/2015
2.7.4 2,352 3/4/2015
2.7.3 2,180 2/10/2015
2.7.2 2,013 2/6/2015
2.7.1 2,054 1/29/2015
2.7.0 2,231 12/2/2014
2.6.9 2,176 12/1/2014
2.6.8 2,272 11/17/2014
2.6.7 2,447 11/17/2014
2.6.6 2,570 11/6/2014
2.6.5 2,053 10/27/2014
2.6.4 2,027 10/23/2014
2.6.3 2,047 10/23/2014
2.6.2 2,108 10/15/2014
2.6.1 2,081 10/15/2014
2.6.0 2,084 10/15/2014
2.5.7 2,095 9/23/2014
2.5.6 1,986 9/23/2014
2.5.5.24485 2,045 9/23/2014
2.5.4.21816 2,074 9/8/2014
2.5.3.21606 2,048 5/27/2014
2.5.2.13345 2,006 5/27/2014
2.5.1.23713 2,039 5/26/2014
2.5.0.24454 2,074 5/20/2014
2.4.9.20141 2,017 5/20/2014
2.4.8.19409 2,013 5/14/2014
2.4.7.17997 2,019 5/14/2014
2.4.6.16997 2,005 5/14/2014
2.4.5.14914 2,010 5/9/2014
2.4.4.36076 2,056 5/8/2014
2.4.3.23091 2,061 5/7/2014
2.4.2.23098 2,038 5/6/2014
2.4.1.22094 2,022 5/6/2014
2.4.0.17445 2,035 5/6/2014
2.3.0.24148 2,033 5/5/2014
2.2.20.22116 2,016 5/5/2014
2.2.19.18415 2,045 5/5/2014
2.2.18.15445 2,058 5/5/2014
2.2.17.15085 1,996 5/5/2014
2.2.16.27997 2,027 4/30/2014
2.2.15.26255 2,034 4/30/2014
2.2.14.24211 2,027 4/30/2014
2.2.13.23379 2,041 4/30/2014
2.2.12.20999 2,063 4/30/2014
2.2.11.25599 2,152 4/29/2014
2.2.10.14575 2,105 4/29/2014
2.2.9.16815 2,024 4/28/2014
2.2.8.26977 2,012 4/25/2014
2.2.7.26523 2,139 4/25/2014
2.2.6.24901 2,094 4/25/2014
2.2.5.15107 2,196 4/25/2014
2.2.4.30914 2,231 4/10/2014
2.2.3.23697 2,168 4/9/2014
2.2.2.26016 2,153 4/7/2014
2.2.1.22969 2,132 4/7/2014
2.2.0.18912 2,132 4/7/2014
2.1.1.17600 2,121 4/7/2014
2.1.0.15614 2,201 4/7/2014
2.0.8.25856 2,127 3/31/2014
2.0.7.24048 2,117 3/28/2014
2.0.6.28239 2,141 3/26/2014
2.0.5.24106 2,120 3/24/2014
2.0.4.18700 2,114 3/21/2014
2.0.3.27803 2,080 3/20/2014
2.0.2.15340 2,059 3/20/2014
2.0.1.27107 2,109 3/13/2014
2.0.0.21998 2,085 3/13/2014
1.9.5183.29291 2,035 3/11/2014
1.8.5182.17882 2,087 3/10/2014
1.7.5175.36439 2,025 3/3/2014
1.6.5162.23866 2,085 2/18/2014
1.5.5155.20014 2,050 2/11/2014
1.5.5155.15890 2,134 2/11/2014
1.4.5154.20949 2,191 2/10/2014
1.4.5078.30187 2,156 11/26/2013
1.4.5078.28578 2,099 11/26/2013
1.4.0.33438 2,075 11/21/2013
1.3.4983.18058 2,112 8/23/2013
1.3.4983.18014 2,064 8/23/2013
1.2.4981.18434 2,123 8/21/2013
1.1.4980.23070 2,110 8/20/2013
1.0.0 2,155 8/19/2013

Added support for survey area