-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
52 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { NouvelleAquitaineDepartmentCode } from "../NouvelleAquitaineDepartmentCode" | ||
import { Place } from "../../../../../../place/Place" | ||
import { Organization, OrganizationType } from "../../../../../Organization" | ||
import { nouvelleAquitaine } from "../NouvelleAquitaine" | ||
import { Department } from "../../../../../country/region/department/Department" | ||
|
||
export const creuse = new Organization(NouvelleAquitaineDepartmentCode.Creuse, | ||
[Place.fromLocation(46.189722, 2.085556)], OrganizationType.department, nouvelleAquitaine) | ||
export const creuse = Department.create(NouvelleAquitaineDepartmentCode.Creuse, | ||
nouvelleAquitaine, Place.fromLocation(46.189722, 2.085556)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import { chambonSurVoueize23 } from "./chambon/Chambon" | ||
import { Organization } from "../../../../../Organization" | ||
import { City } from "../../../../../country/region/department/city/City" | ||
|
||
export const creuseCities: Organization[] = [ | ||
export const creuseCities: City[] = [ | ||
chambonSurVoueize23 | ||
] |
4 changes: 2 additions & 2 deletions
4
...eu/fr/region/naq/23/CreuseCityMessages.ts → org/eu/fr/region/naq/23/CreuseMessages.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import { DepartmentMessages } from "../../../../../../country/region/department/DepartmentMessages" | ||
import { CityMessages } from "../../../../../../country/region/department/city/CityMessages" | ||
|
||
export let chambonMessages = new DepartmentMessages("Chambon-sur-Voueize") | ||
export const chambonMessages = new CityMessages("Chambon-sur-Voueize") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { NouvelleAquitaineDepartmentCode } from "../NouvelleAquitaineDepartmentCode" | ||
import { Place } from "../../../../../../place/Place" | ||
import { nouvelleAquitaine } from "../NouvelleAquitaine" | ||
import { Department } from "../../../../../country/region/department/Department" | ||
|
||
export const gironde = Department.create(NouvelleAquitaineDepartmentCode.Gironde, | ||
nouvelleAquitaine, Place.fromDMS("44°50′14″N,0°35′12″O")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import { saintAndreDeCubzac } from "./saintandredecubzac/SaintAndreDeCubzac" | ||
import { City } from "../../../../../country/region/department/city/City" | ||
|
||
export const girondeCities: City[] = [ | ||
saintAndreDeCubzac | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export enum GirondeCityCode { | ||
SaintAndreDeCubzac = 33366 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { saintAndreDeCubzacMessages } from "./saintandredecubzac/SaintAndreDeCubzacMessages" | ||
import { GirondeCityCode } from "./GirondeCityCode" | ||
import { DepartmentMessages } from "../../../../../country/region/department/DepartmentMessages" | ||
import { CityMessages } from "../../../../../country/region/department/city/CityMessages" | ||
|
||
type GirondeCityMessagesList = { [key in GirondeCityCode]: CityMessages } | ||
const girondeCityMessages: GirondeCityMessagesList = { | ||
[GirondeCityCode.SaintAndreDeCubzac]: saintAndreDeCubzacMessages | ||
} | ||
export const girondeMessages = DepartmentMessages.create<GirondeCityMessagesList>("Gironde", girondeCityMessages) |
5 changes: 5 additions & 0 deletions
5
org/eu/fr/region/naq/33/saintandredecubzac/SaintAndreDeCubzac.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { franceCity } from "../../../../FranceCity" | ||
import { Place } from "../../../../../../../place/Place" | ||
import { GirondeCityCode } from "../GirondeCityCode" | ||
|
||
export const saintAndreDeCubzac = franceCity(GirondeCityCode.SaintAndreDeCubzac, Place.fromDMS("44°59′44″N,0°26′41″O")) |
3 changes: 3 additions & 0 deletions
3
org/eu/fr/region/naq/33/saintandredecubzac/SaintAndreDeCubzacMessages.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { CityMessages } from "../../../../../../country/region/department/city/CityMessages" | ||
|
||
export const saintAndreDeCubzacMessages = new CityMessages("Saint-André-de-Cubzac") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters