get_indicators_systems_code_instances {istacr} | R Documentation |
Get indicators system code instances
Description
This function returns instances of indicators associated with a specific indicator system. An instance of an indicator is nothing more than a spatio-temporal query of an indicator when it is incorporated into a specific indicator system.
Usage
get_indicators_systems_code_instances(
indicatorsystemcode,
q = "",
order = "",
limit = 25,
offset = 0,
fields = "",
representation = "",
granularity = ""
)
Arguments
indicatorsystemcode |
(string): with an indicator system code |
q |
(string): Query of metadata on which the searches can be built are: “id“ and “geographicalValue“. |
order |
(string): Order. Possible values are: “update“ and “id“ and order criteria are “ASC“ and “DESC“. |
limit |
(int): Results limit. By default “limit = 25“. |
offset |
(int): Displacement. Result from which it is returned. By default “offset = 0“. |
fields |
(string): Use of the answer by adding new fields. Possible values are: “+metadata“, “+data“ and “+observationsMetadata“. |
representation |
(string): Allows filtering the observations by their value. Its use only makes sense when “+data“ and/or “+observationsMetadata“ has been included. |
granularity |
(string): Allows to filter the observations through the granularities of the same. Its use only makes sense when “+data“ and/or “+observationsMetadata“ has been included. |
Examples
get_indicators_systems_code_instances("C00075H")
get_indicators_systems_code_instances(
"C00075H",
q='id EQ "INDICADORES_MUNICIPALES"'
)