s/SQlite/SQLite

This commit is contained in:
Tom Kralidis
2018-04-07 19:07:15 +00:00
parent c8b94c9a10
commit b736a2d59b
3 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -146,8 +146,7 @@ datasets:
begin: None
end: now # or empty
provider:
name: SQlite
name: SQLite
data: tests/data/ne_110m_admin_0_countries.sqlite
id_field: ogc_fid
table: ne_110m_admin_0_countries
+1 -1
View File
@@ -36,7 +36,7 @@ PROVIDERS = {
'CSV': 'pygeoapi.provider.csv_.CSVProvider',
'Elasticsearch': 'pygeoapi.provider.elasticsearch_.ElasticsearchProvider',
'GeoJSON': 'pygeoapi.provider.geojson.GeoJSONProvider',
'SQlite': 'pygeoapi.provider.sqlite.SQLiteProvider',
'SQLite': 'pygeoapi.provider.sqlite.SQLiteProvider',
}
+1 -1
View File
@@ -200,4 +200,4 @@ class SQLiteProvider(BaseProvider):
return feature_collection
def __repr__(self):
return '<SQliteProvider> {},{}'.format(self.data, self.table)
return '<SQLiteProvider> {},{}'.format(self.data, self.table)