![]() |
VOOZH | about |
dotnet add package Universe.NetCore.FIAS.Normalizer --version 1.0.0.100
NuGet\Install-Package Universe.NetCore.FIAS.Normalizer -Version 1.0.0.100
<PackageReference Include="Universe.NetCore.FIAS.Normalizer" Version="1.0.0.100" />
<PackageVersion Include="Universe.NetCore.FIAS.Normalizer" Version="1.0.0.100" />Directory.Packages.props
<PackageReference Include="Universe.NetCore.FIAS.Normalizer" />Project file
paket add Universe.NetCore.FIAS.Normalizer --version 1.0.0.100
#r "nuget: Universe.NetCore.FIAS.Normalizer, 1.0.0.100"
#:package Universe.NetCore.FIAS.Normalizer@1.0.0.100
#addin nuget:?package=Universe.NetCore.FIAS.Normalizer&version=1.0.0.100Install as a Cake Addin
#tool nuget:?package=Universe.NetCore.FIAS.Normalizer&version=1.0.0.100Install as a Cake Tool
The Universe.FIAS project is a .NET library designed to work with the Federal Information Address System (FIAS) database in Russia. FIAS is a federal-level address database used for standardizing and managing address data across various systems. This library provides tools to parse, process, and query FIAS data efficiently.
Npgsql dependency).The project is structured into several key classes and namespaces:
FiasDbContext (Database Context)AddrObjs - Address Objects: regions, districts, streets, cities;AsHouses - houses;Object statuses - AsActStatuses, AsCenterStatuses, AsOperStatuses, AsStrStatuses;Other FIAS-related tables - AsVersions, AsAddrObjTypes,
where AS - it's meaning Address System.FiasEntity and Derived ClassesRepresents FIAS data structures:
AsAddrObj – represents for FIAS address objects: regions, districts, streets, cities;AsHouse – represents house records.FiasXmlParserAS_ADDROBJ.XML, AS_HOUSES.XML).XmlSerializer to deserialize data into C# objects.FiasImporterFiasService (or similar query service)FiasDownloader (if present)FiasExtensions// Initialize the database context
using var db = new FiasDbContext();
// Query addresses in a specific region
var houses = db.Houses
.Where(h => h.RegionCode == "63") // Moscow region code
.ToList();
// Import FIAS data from XML
var parser = new FiasXmlParser();
var objects = parser.Parse("AS_ADDROBJ.XML");
var importer = new FiasImporter(db);
importer.Import(objects);
Second sample:
var scope = new UniverseFiasScope(resolver, settings, container);
var searcher = new FiasUtil(scope);
var info = searcher.GetFiasInfo("ул. Молодогвардейская, д.244");
EntityFrameworkCore (for database operations)Npgsql.EntityFrameworkCore.PostgreSQL (PostgreSQL support)System.Xml (XML parsing)This library is useful for applications that need to work with Russian address data (e.g., logistics, government systems, CRM). It abstracts the complexities of FIAS XML parsing and database operations, providing a clean API for developers.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 is compatible. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.